objectManager = Bootstrap::getObjectManager(); } /** * @param string $route * @param string $scope * @dataProvider getRouteFrontNameDataProvider */ public function testGetRouteFrontName($route, $scope) { CacheCleaner::cleanAll(); $this->assertEquals( $this->objectManager->create(Config::class)->getRouteFrontName($route, $scope), $this->objectManager->create(Config::class)->getRouteFrontName($route, $scope) ); } public function getRouteFrontNameDataProvider() { return [ ['adminhtml', 'adminhtml'], ['catalog', 'frontend'], ]; } }