You are here

public function InfoParserUnitTest::providerInvalidLifecycle in Drupal 10

Same name and namespace in other branches
  1. 9 core/tests/Drupal/Tests/Core/Extension/InfoParserUnitTest.php \Drupal\Tests\Core\Extension\InfoParserUnitTest::providerInvalidLifecycle()

Data provider for testInvalidLifecycle().

File

core/tests/Drupal/Tests/Core/Extension/InfoParserUnitTest.php, line 466

Class

InfoParserUnitTest
Tests InfoParser class and exception.

Namespace

Drupal\Tests\Core\Extension

Code

public function providerInvalidLifecycle() {
  return [
    'bogus' => [
      'bogus',
      "'lifecycle: bogus' is not valid",
    ],
    'two words' => [
      'deprecated obsolete',
      "'lifecycle: deprecated obsolete' is not valid",
    ],
    'wrong case' => [
      'Experimental',
      "'lifecycle: Experimental' is not valid",
    ],
  ];
}