Ejemplo n.º 1
0
 public function testGetProduct()
 {
     $product = 'some test product';
     $this->_mockRegistry->expects($this->once())->method('registry')->with($this->equalTo('product'))->willReturn($product);
     $this->assertEquals($product, $this->_model->getProduct());
 }