function HelpTopicDiscoveryTest::testDiscoveryExceptionMissingLabel

Same name and namespace in other branches
  1. 9 core/modules/help_topics/tests/src/Unit/HelpTopicDiscoveryTest.php \Drupal\Tests\help_topics\Unit\HelpTopicDiscoveryTest::testDiscoveryExceptionMissingLabel()
  2. 8.9.x core/modules/help_topics/tests/src/Unit/HelpTopicDiscoveryTest.php \Drupal\Tests\help_topics\Unit\HelpTopicDiscoveryTest::testDiscoveryExceptionMissingLabel()
  3. 11.x core/modules/help/tests/src/Unit/HelpTopicDiscoveryTest.php \Drupal\Tests\help\Unit\HelpTopicDiscoveryTest::testDiscoveryExceptionMissingLabel()

@covers ::findAll

File

core/modules/help/tests/src/Unit/HelpTopicDiscoveryTest.php, line 24

Class

HelpTopicDiscoveryTest
@coversDefaultClass \Drupal\help\HelpTopicDiscovery[[api-linebreak]] @group help

Namespace

Drupal\Tests\help\Unit

Code

public function testDiscoveryExceptionMissingLabel() : void {
  vfsStream::setup('root');
  vfsStream::create([
    'modules' => [
      'test' => [
        'help_topics' => [
          // The content of the help topic does not matter.
'test.topic.html.twig' => '',
        ],
      ],
    ],
  ]);
  $discovery = new HelpTopicDiscovery([
    'test' => vfsStream::url('root/modules/test/help_topics'),
  ]);
  $this->expectException(DiscoveryException::class);
  $this->expectExceptionMessage("vfs://root/modules/test/help_topics/test.topic.html.twig does not contain the required key with name='label'");
  $discovery->getDefinitions();
}

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