Your IP : 216.73.216.38


Current Path : /home/maglabs/it/dev/tests/integration/testsuite/Magento/Store/Model/ResourceModel/
Upload File :
Current File : /home/maglabs/it/dev/tests/integration/testsuite/Magento/Store/Model/ResourceModel/StoreTest.php

<?php
/**
 * Copyright © Magento, Inc. All rights reserved.
 * See COPYING.txt for license details.
 */
namespace Magento\Store\Model\ResourceModel;

class StoreTest extends \PHPUnit\Framework\TestCase
{
    public function testCountAll()
    {
        /** @var $model \Magento\Store\Model\ResourceModel\Store */
        $model = \Magento\TestFramework\Helper\Bootstrap::getObjectManager()->create(
            \Magento\Store\Model\ResourceModel\Store::class
        );
        $this->assertEquals(1, $model->countAll());
        $this->assertEquals(1, $model->countAll(false));
        $this->assertEquals(2, $model->countAll(true));
    }
}

?>