public function BaseThemeDefaultDeprecationTest::register in Drupal 8
Registers test-specific services.
Extend this method in your test to register additional services. This method is called whenever the kernel is rebuilt.
Parameters
\Drupal\Core\DependencyInjection\ContainerBuilder $container: The service container to enhance.
Overrides KernelTestBase::register
See also
\Drupal\Tests\KernelTestBase::bootKernel()
File
- core/
tests/ Drupal/ KernelTests/ Core/ Theme/ BaseThemeDefaultDeprecationTest.php, line 52
Class
- BaseThemeDefaultDeprecationTest
- Tests the behavior of the Stable theme.
Namespace
Drupal\KernelTests\Core\ThemeCode
public function register(ContainerBuilder $container) {
parent::register($container);
$container
->getDefinition('extension.list.theme')
->setClass(VfsThemeExtensionList::class);
}