getDescription() public method

public getDescription ( )
Example #1
0
 /**
  * @test
  */
 public function getShouldInvokeMethod()
 {
     //given
     $product = new Product(array());
     //when
     $description = $product->get('getDescription()');
     //then
     $this->assertEquals($product->getDescription(), $description);
 }