public function HelpTopicTwigLoaderTest::testGetSourceContext in Drupal 8
Same name and namespace in other branches
- 9 core/modules/help_topics/tests/src/Unit/HelpTopicTwigLoaderTest.php \Drupal\Tests\help_topics\Unit\HelpTopicTwigLoaderTest::testGetSourceContext()
@covers ::getSourceContext
File
- core/
modules/ help_topics/ tests/ src/ Unit/ HelpTopicTwigLoaderTest.php, line 58
Class
- HelpTopicTwigLoaderTest
- Unit test for the HelpTopicTwigLoader class.
Namespace
Drupal\Tests\help_topics\UnitCode
public function testGetSourceContext() {
$source = $this->helpLoader
->getSourceContext('@' . HelpTopicTwigLoader::MAIN_NAMESPACE . '/test.topic.html.twig');
$this
->assertEquals('{% line 4 %}<h2>Test</h2>', $source
->getCode());
}