123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- namespace Magento\Review\Model\ResourceModel\Rating;
- class CollectionTest extends \PHPUnit\Framework\TestCase
- {
- /**
- * @var \Magento\Review\Model\ResourceModel\Rating\Collection
- */
- protected $collection;
- protected function setUp()
- {
- $this->collection = \Magento\TestFramework\Helper\Bootstrap::getObjectManager()->create(
- \Magento\Review\Model\ResourceModel\Rating\Collection::class
- );
- }
- /**
- * @magentoDataFixture Magento/Review/_files/customer_review_with_rating.php
- */
- public function testAddEntitySummaryToItem()
- {
- $ratingData = \Magento\TestFramework\Helper\Bootstrap::getObjectManager()
- ->get(\Magento\Framework\Registry::class)
- ->registry('rating_data');
- $result = $this->collection->addEntitySummaryToItem($ratingData->getEntityId(), $ratingData->getStoreId());
- $this->assertEquals($this->collection, $result);
- }
- /**
- * @magentoDbIsolation enabled
- */
- public function testAddEntitySummaryToItemEmpty()
- {
- foreach ($this->collection->getItems() as $item) {
- $item->delete();
- }
- $this->collection->clear();
- $result = $this->collection->addEntitySummaryToItem(1, 1);
- $this->assertEquals($this->collection, $result);
- }
- public function testAddStoreData()
- {
- $this->collection->addStoreData();
- }
- public function testSetStoreFilter()
- {
- $this->collection->setStoreFilter(1);
- }
- }
|