function ThemeTest::assertThemeIncompatibleText

Same name and namespace in other branches
  1. 8.9.x core/modules/system/tests/src/Functional/System/ThemeTest.php \Drupal\Tests\system\Functional\System\ThemeTest::assertThemeIncompatibleText()
  2. 10 core/modules/system/tests/src/Functional/System/ThemeTest.php \Drupal\Tests\system\Functional\System\ThemeTest::assertThemeIncompatibleText()
  3. 11.x core/modules/system/tests/src/Functional/System/ThemeTest.php \Drupal\Tests\system\Functional\System\ThemeTest::assertThemeIncompatibleText()

Asserts that expected incompatibility text is displayed for a theme.

Parameters

string $theme_name: Theme name to select element on page. This can be a partial name.

string $expected_text: The expected incompatibility text.

1 call to ThemeTest::assertThemeIncompatibleText()
ThemeTest::testInvalidTheme in core/modules/system/tests/src/Functional/System/ThemeTest.php
Tests themes can't be installed when the base theme or engine is missing.

File

core/modules/system/tests/src/Functional/System/ThemeTest.php, line 520

Class

ThemeTest
Tests the theme administration user interface.

Namespace

Drupal\Tests\system\Functional\System

Code

private function assertThemeIncompatibleText(string $theme_name, string $expected_text) : void {
    $this->assertSession()
        ->elementExists('css', ".theme-info:contains(\"{$theme_name}\") .incompatible:contains(\"{$expected_text}\")");
}

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