function LibraryDependencyResolverTest::testGetMinimalRepresentativeSubsetInvalidInput
Tests get minimal representative subset invalid input.
@legacy-covers ::getMinimalRepresentativeSubset
File
-
core/
tests/ Drupal/ Tests/ Core/ Asset/ LibraryDependencyResolverTest.php, line 383
Class
Namespace
Drupal\Tests\Core\AssetCode
public function testGetMinimalRepresentativeSubsetInvalidInput() : void {
$this->expectException(\AssertionError::class);
$this->expectExceptionMessage('$libraries can\'t contain duplicate items.');
$this->libraryDependencyResolver
->getMinimalRepresentativeSubset([
'test/no_deps_a',
'test/no_deps_a',
]);
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.