You are here

public function DbToolsApplicationTest::testDumpCommandRegistration in Drupal 9

Same name and namespace in other branches
  1. 8 core/modules/system/tests/src/Kernel/Scripts/DbToolsApplicationTest.php \Drupal\Tests\system\Kernel\Scripts\DbToolsApplicationTest::testDumpCommandRegistration()

Tests that the dump command is correctly registered.

File

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

Class

DbToolsApplicationTest
Test that the DbToolsApplication works correctly.

Namespace

Drupal\Tests\system\Kernel\Scripts

Code

public function testDumpCommandRegistration() {
  $application = new DbToolsApplication();
  $command = $application
    ->find('dump');
  $this
    ->assertInstanceOf('\\Drupal\\Core\\Command\\DbDumpCommand', $command);
  $this
    ->assertSame(\Drupal::VERSION, $application
    ->getVersion());
}