コード例 #1
0
ファイル: MapTest.php プロジェクト: axelmdev/ecommerce
 /**
  * @expectedException InvalidArgumentException
  * @expectedExceptionMessage The number must be greater than 0, but got -5.
  */
 public function testTakeWithNegativeNumber()
 {
     $this->map->take(-5);
 }