Skip to content

Commit

Permalink
Issue #2 測試:建立第二則非零測試
Browse files Browse the repository at this point in the history
  • Loading branch information
mouson committed Jan 9, 2017
1 parent 6e1c445 commit a84c85f
Showing 1 changed file with 15 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -33,4 +33,19 @@ public function test_測試雙倍數列輸入0應回傳0()
$this->assertEquals($expected, $actual);
}

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

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

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

}

0 comments on commit a84c85f

Please sign in to comment.