objectManager = Bootstrap::getObjectManager(); $this->storeManager = $this->objectManager->get(StoreManagerInterface::class); } /** * Check that behavior of setting and getting store into StoreManager is correct * Setting: Magento\Store\Model\StoreManagerInterface::setCurrentStore * Getting: Magento\Store\Model\StoreManagerInterface::getStore * * @return void */ public function testDefaultStoreIdIsSetCorrectly() { $this->storeManager->setCurrentStore(Store::DEFAULT_STORE_ID); $this->assertEquals(Store::DEFAULT_STORE_ID, $this->storeManager->getStore()->getId()); } }