function DbToolsApplicationTest::testImportCommandRegistration

Same name and namespace in other branches
  1. 9 core/modules/system/tests/src/Kernel/Scripts/DbToolsApplicationTest.php \Drupal\Tests\system\Kernel\Scripts\DbToolsApplicationTest::testImportCommandRegistration()
  2. 10 core/modules/system/tests/src/Kernel/Scripts/DbToolsApplicationTest.php \Drupal\Tests\system\Kernel\Scripts\DbToolsApplicationTest::testImportCommandRegistration()
  3. 11.x core/modules/system/tests/src/Kernel/Scripts/DbToolsApplicationTest.php \Drupal\Tests\system\Kernel\Scripts\DbToolsApplicationTest::testImportCommandRegistration()

Test that the dump command is correctly registered.

File

core/modules/system/tests/src/Kernel/Scripts/DbToolsApplicationTest.php, line 31

Class

DbToolsApplicationTest
Test that the DbToolsApplication works correctly.

Namespace

Drupal\Tests\system\Kernel\Scripts

Code

public function testImportCommandRegistration() {
    $application = new DbToolsApplication();
    $command = $application->find('import');
    $this->assertInstanceOf('\\Drupal\\Core\\Command\\DbImportCommand', $command);
}

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