public function testUtilsObjectConstructedWithCEShopId()
 {
     if ($this->getTestConfig()->getShopEdition() == 'EE') {
         $this->markTestSkipped('This test is for Community/Professional edition only.');
     }
     $expectedShopId = ShopIdCalculator::BASE_SHOP_ID;
     $utilsObject = new UtilsObject();
     $realShopId = $utilsObject->getShopId();
     $this->assertSame($expectedShopId, $realShopId);
 }