You are here

public function InfoParserUnitTest::testInfoParserNonExisting in Drupal 10

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

Tests the functionality of the infoParser object.

@covers ::parse

File

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

Class

InfoParserUnitTest
Tests InfoParser class and exception.

Namespace

Drupal\Tests\Core\Extension

Code

public function testInfoParserNonExisting() {
  vfsStream::setup('modules');
  $info = $this->infoParser
    ->parse(vfsStream::url('modules') . '/does_not_exist.info.txt');
  $this
    ->assertEmpty($info, 'Non existing info.yml returns empty array.');
}