ThemeRegistryLoaderTest.php in Drupal 9
File
core/tests/Drupal/Tests/Core/Template/Loader/ThemeRegistryLoaderTest.php
View source
<?php
namespace Drupal\Tests\Core\Template\Loader;
use Drupal\Core\Template\Loader\ThemeRegistryLoader;
use Drupal\Tests\UnitTestCase;
class ThemeRegistryLoaderTest extends UnitTestCase {
public function testLoaderReturnsFalseForExistsOnNonexistent() {
$registry = $this
->prophesize('Drupal\\Core\\Theme\\Registry');
$runtime = $this
->prophesize('Drupal\\Core\\Utility\\ThemeRegistry');
$runtime
->has('foo')
->shouldBeCalled()
->willReturn(FALSE);
$registry
->getRuntime()
->willReturn($runtime);
$loader = new ThemeRegistryLoader($registry
->reveal());
$this
->assertFalse($loader
->exists('foo'));
}
}