public function testGetBaseRouteParameters() { $result =
$this->configNamesMapper->
getBaseRouteParameters();
$this->
assertSame([],
$result);
} /**
* Tests ConfigNamesMapper::getBaseRoute().
*/
public function testGetBaseRoute() { $result =
$this->configNamesMapper->
getBaseRoute();
$this->
assertSame($this->baseRoute,
$result);
} /**
* Tests ConfigNamesMapper::getBasePath().
*/
public function testGetBasePath() { $this->urlGenerator->
expects($this->
once()) ->
method('getPathFromRoute'
) ->
with('system.site_information_settings',
[]) ->
willReturn('/admin/config/system/site-information'
);