You are here

CoreThemesAutoloadedForTests.php in Drupal 10

Same filename and directory in other branches
  1. 9 core/tests/Drupal/Tests/Core/Theme/CoreThemesAutoloadedForTests.php

File

core/tests/Drupal/Tests/Core/Theme/CoreThemesAutoloadedForTests.php
View source
<?php

namespace Drupal\Tests\Core\Theme;

use Drupal\Tests\UnitTestCase;
use Drupal\claro\ClaroPreRender;

/**
 * Confirms that core/themes is autoloaded for tests.
 *
 * @group Theme
 */
class CoreThemesAutoloadedForTests extends UnitTestCase {

  /**
   * Confirms that core/themes is autoloaded for tests.
   */
  public function testCoreThemesAutoloadedForTests() {
    $this
      ->assertTrue(class_exists(ClaroPreRender::class), 'core/themes (ClaroPreRender) is registered with the tests autoloader');
  }

}

Classes

Namesort descending Description
CoreThemesAutoloadedForTests Confirms that core/themes is autoloaded for tests.