public function ThemeTest::testNegotiatorPriorities in Drupal 9
Same name and namespace in other branches
- 8 core/modules/system/tests/src/Functional/Theme/ThemeTest.php \Drupal\Tests\system\Functional\Theme\ThemeTest::testNegotiatorPriorities()
Tests the priority of some theme negotiators.
File
- core/
modules/ system/ tests/ src/ Functional/ Theme/ ThemeTest.php, line 55
Class
- ThemeTest
- Tests low-level theme functions.
Namespace
Drupal\Tests\system\Functional\ThemeCode
public function testNegotiatorPriorities() {
$this
->drupalGet('theme-test/priority');
// Ensure that the custom theme negotiator was not able to set the theme.
$this
->assertSession()
->pageTextNotContains('Theme hook implementor=theme-test--suggestion.html.twig. Foo=template_preprocess_theme_test');
}