コード例 #1
0
ファイル: ProductTest.php プロジェクト: lmammino/e-foundation
 /**
  * @test
  */
 public function it_should_handle_a_title()
 {
     $title = 'New Shoes';
     $this->product->setTitle($title);
     $this->assertEquals($title, $this->product->getTitle());
 }