function ExtensionListTest::testGetAllAvailableInfo

Same name and namespace in other branches
  1. 9 core/tests/Drupal/Tests/Core/Extension/ExtensionListTest.php \Drupal\Tests\Core\Extension\ExtensionListTest::testGetAllAvailableInfo()
  2. 8.9.x core/tests/Drupal/Tests/Core/Extension/ExtensionListTest.php \Drupal\Tests\Core\Extension\ExtensionListTest::testGetAllAvailableInfo()
  3. 11.x core/tests/Drupal/Tests/Core/Extension/ExtensionListTest.php \Drupal\Tests\Core\Extension\ExtensionListTest::testGetAllAvailableInfo()

@covers ::getAllAvailableInfo

File

core/tests/Drupal/Tests/Core/Extension/ExtensionListTest.php, line 107

Class

ExtensionListTest
@coversDefaultClass \Drupal\Core\Extension\ExtensionList[[api-linebreak]] @group Extension

Namespace

Drupal\Tests\Core\Extension

Code

public function testGetAllAvailableInfo() : void {
  $test_extension_list = $this->setupTestExtensionList();
  $infos = $test_extension_list->getAllAvailableInfo();
  $this->assertEquals([
    'test_name' => [
      'type' => 'test_extension',
      'core' => '8.x',
      'name' => 'test name',
      'mtime' => 123456789,
    ],
  ], $infos);
}

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