function BatchBuilderTest::testSetFinishCallbackStaticSingle
Same name and namespace in other branches
- 11.x core/tests/Drupal/Tests/Core/Batch/BatchBuilderTest.php \Drupal\Tests\Core\Batch\BatchBuilderTest::testSetFinishCallbackStaticSingle()
Tests setFinishCallback().
File
-
core/
tests/ Drupal/ Tests/ Core/ Batch/ BatchBuilderTest.php, line 63
Class
- BatchBuilderTest
- Tests for the batch builder class.
Namespace
Drupal\Tests\Core\BatchCode
public function testSetFinishCallbackStaticSingle() : void {
$batch = (new BatchBuilder())->setFinishCallback(static::class . ':finishedCallback')
->toArray();
$this->assertEquals('Drupal\\Tests\\Core\\Batch\\BatchBuilderTest:finishedCallback', $batch['finished']);
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.