Skip to content

Commit

Permalink
Issue #2 測試:建立負數測試案例
Browse files Browse the repository at this point in the history
  • Loading branch information
mouson committed Mar 20, 2019
1 parent 6e139b4 commit 5e81054
Showing 1 changed file with 15 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -49,4 +49,19 @@ public function test_測試雙倍數列輸入2應回傳4()
$this->assertEquals($expected, $actual);
}

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

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

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

}

0 comments on commit 5e81054

Please sign in to comment.