create( \Magento\Review\Model\Review::class, ['data' => ['nickname' => 'Nickname', 'title' => 'Review Summary', 'detail' => 'Review text']] ); $review->setEntityId( $review->getEntityIdByCode(\Magento\Review\Model\Review::ENTITY_PRODUCT_CODE) )->setEntityPkValue( $product->getId() )->setStatusId( \Magento\Review\Model\Review::STATUS_PENDING )->setStoreId( \Magento\TestFramework\Helper\Bootstrap::getObjectManager()->get( \Magento\Store\Model\StoreManagerInterface::class )->getStore()->getId() )->setStores( [ \Magento\TestFramework\Helper\Bootstrap::getObjectManager()->get( \Magento\Store\Model\StoreManagerInterface::class )->getStore()->getId() ] )->save();