You are here

public function AdminNegotiatorTest::getThemes in Drupal 10

Same name and namespace in other branches
  1. 8 core/modules/user/tests/src/Unit/Theme/AdminNegotiatorTest.php \Drupal\Tests\user\Unit\Theme\AdminNegotiatorTest::getThemes()
  2. 9 core/modules/user/tests/src/Unit/Theme/AdminNegotiatorTest.php \Drupal\Tests\user\Unit\Theme\AdminNegotiatorTest::getThemes()

Provides a list of theme names to test.

File

core/modules/user/tests/src/Unit/Theme/AdminNegotiatorTest.php, line 36

Class

AdminNegotiatorTest
Tests AdminNegotiator class.

Namespace

Drupal\Tests\user\Unit\Theme

Code

public function getThemes() {
  return [
    [
      'claro',
      'claro',
    ],
    [
      NULL,
      NULL,
    ],
    [
      '',
      NULL,
    ],
  ];
}