ThemeRegistryLoaderTest.php

Same filename and directory in other branches
  1. 8.9.x core/tests/Drupal/Tests/Core/Template/Loader/ThemeRegistryLoaderTest.php
  2. 10 core/tests/Drupal/Tests/Core/Template/Loader/ThemeRegistryLoaderTest.php
  3. 11.x core/tests/Drupal/Tests/Core/Template/Loader/ThemeRegistryLoaderTest.php

Namespace

Drupal\Tests\Core\Template\Loader

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;

/**
 * @coversDefaultClass \Drupal\Core\Template\Loader\ThemeRegistryLoader
 * @group Template
 */
class ThemeRegistryLoaderTest extends UnitTestCase {
    
    /**
     * @covers ::findTemplate
     */
    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'));
    }

}

Classes

Title Deprecated Summary
ThemeRegistryLoaderTest @coversDefaultClass \Drupal\Core\Template\Loader\ThemeRegistryLoader @group Template

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.