function BatchBuilderTest::testAddingLibraries
Tests setting and adding libraries.
@covers ::setLibraries
File
-
core/
tests/ Drupal/ Tests/ Core/ Batch/ BatchBuilderTest.php, line 137
Class
- BatchBuilderTest
- Tests for the batch builder class.
Namespace
Drupal\Tests\Core\BatchCode
public function testAddingLibraries() {
$batch = (new BatchBuilder())->setLibraries([
'only/library',
])
->toArray();
$this->assertEquals([
'only/library',
], $batch['library']);
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.