You are here

public function BatchBuilderTest::testQueueExists in Drupal 9

Same name and namespace in other branches
  1. 8 core/tests/Drupal/Tests/Core/Batch/BatchBuilderTest.php \Drupal\Tests\Core\Batch\BatchBuilderTest::testQueueExists()
  2. 10 core/tests/Drupal/Tests/Core/Batch/BatchBuilderTest.php \Drupal\Tests\Core\Batch\BatchBuilderTest::testQueueExists()

Tests queue class exists.

@covers ::setQueue

File

core/tests/Drupal/Tests/Core/Batch/BatchBuilderTest.php, line 186

Class

BatchBuilderTest
Tests for the batch builder class.

Namespace

Drupal\Tests\Core\Batch

Code

public function testQueueExists() {
  $batch_builder = new BatchBuilder();
  $this
    ->expectException(\InvalidArgumentException::class);
  $this
    ->expectExceptionMessage('Class \\ThisIsNotAClass does not exist.');
  $batch_builder
    ->setQueue('BatchName', '\\ThisIsNotAClass');
}