You are here

public function TasksTest::testNameWithNoConnection in Drupal 9

@covers ::name

File

core/tests/Drupal/Tests/Core/Database/Driver/mysql/install/TasksTest.php, line 129

Class

TasksTest
Tests the MySQL install tasks.

Namespace

Drupal\Tests\Core\Database\Driver\mysql\install

Code

public function testNameWithNoConnection() {
  $tasks = $this
    ->createTasksNoConnection();
  $this
    ->assertSame('MySQL, MariaDB, Percona Server, or equivalent', $tasks
    ->name());
}