function BatchBuilderTest::testSetProgressMessage

Tests setProgressMessage().

@covers ::setProgressMessage

File

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

Class

BatchBuilderTest
Tests for the batch builder class.

Namespace

Drupal\Tests\Core\Batch

Code

public function testSetProgressMessage() {
  $batch = (new BatchBuilder())->setProgressMessage(new TranslatableMarkup('Batch in progress...'))
    ->toArray();
  $this->assertEquals(new TranslatableMarkup('Batch in progress...'), $batch['progress_message']);
}

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