Beispiel #1
0
 public function testGetProductCollection()
 {
     $collection = $this->getMock('Magento\\Review\\Model\\Resource\\Review\\Product\\Collection', [], [], '', false);
     $this->productFactoryMock->expects($this->once())->method('create')->will($this->returnValue($collection));
     $this->assertSame($collection, $this->review->getProductCollection());
 }