function it_provides_configuration_based_on_test_configuration_manager(TestThemeConfigurationManagerInterface $testThemeConfigurationManager)
 {
     $testThemeConfigurationManager->findAll()->willReturn([['name' => 'theme/name']]);
     $this->getConfigurations()->shouldReturn([['name' => 'theme/name']]);
 }
 /**
  * {@inheritdoc}
  */
 public function getConfigurations()
 {
     return $this->testThemeConfigurationManager->findAll();
 }