Skip to content

Commit

Permalink
Issue #1 增加測試:補充非零數測試
Browse files Browse the repository at this point in the history
  • Loading branch information
mouson committed Jan 10, 2017
1 parent f8ae307 commit a4c4cb8
Showing 1 changed file with 15 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -32,4 +32,19 @@ public function test_測試雙倍數列輸入0應回傳0()
/** Assert */
$this->assertEquals($expected, $actual);
}

public function test_測試雙倍數列輸入2應回傳4()
{
/** Arrange */
$target = new DoubleSequenceCalculator();
$value = 2;
/** Assume */
$expected = 4;

/** Act */
$actual = $target->calculate($value);

/** Assert */
$this->assertEquals($expected, $actual);
}
}

0 comments on commit a4c4cb8

Please sign in to comment.