function ExtensionListTest::testGetAllAvailableInfo

Same name in other branches
  1. 8.9.x core/tests/Drupal/Tests/Core/Extension/ExtensionListTest.php \Drupal\Tests\Core\Extension\ExtensionListTest::testGetAllAvailableInfo()
  2. 10 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 105

Class

ExtensionListTest
@coversDefaultClass \Drupal\Core\Extension\ExtensionList @group Extension

Namespace

Drupal\Tests\Core\Extension

Code

public function testGetAllAvailableInfo() {
    $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.