コード例 #1
0
ファイル: ProductTest.php プロジェクト: lmammino/e-foundation
 /**
  * @test
  */
 public function it_should_handle_meta_description()
 {
     $description = 'black shoes from converse are the best in town';
     $this->product->setMetaDescription($description);
     $this->assertEquals($description, $this->product->getMetaDescription());
 }