Changes between Version 5 and Version 6 of EC-CUBE標準規約/単体テストガイドライン
- Timestamp:
- 2012/12/07 19:31:28 (10 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
EC-CUBE標準規約/単体テストガイドライン
v5 v6 64 64 } 65 65 public function testFunctionName_❍❍の場合_△△になる() { 66 $this->expected = array( ‘hoge’, ‘fuga’);66 $this->expected = array('hoge', 'fuga'); 67 67 $this->actual = array(); 68 $this->actual[0] = functionName( ‘a’);69 $this->actual[1] = functionName( ‘b’);68 $this->actual[0] = functionName('a'); 69 $this->actual[1] = functionName('b'); 70 70 71 71 $this->verify(); … … 89 89 90 90 public function testHoge() { 91 $this->expected = array(1, “山田”, “太郎”);91 $this->expected = array(1, "山田", "太郎"); 92 92 // テスト対象を実行して$actualに結果を格納 93 93 $this->verify();