You are here

public function LibraryDependencyResolverTest::testGetMinimalRepresentativeSubsetInvalidInput in Drupal 9

Same name and namespace in other branches
  1. 8 core/tests/Drupal/Tests/Core/Asset/LibraryDependencyResolverTest.php \Drupal\Tests\Core\Asset\LibraryDependencyResolverTest::testGetMinimalRepresentativeSubsetInvalidInput()

@covers ::getMinimalRepresentativeSubset

File

core/tests/Drupal/Tests/Core/Asset/LibraryDependencyResolverTest.php, line 174

Class

LibraryDependencyResolverTest
@coversDefaultClass \Drupal\Core\Asset\LibraryDependencyResolver @group Asset

Namespace

Drupal\Tests\Core\Asset

Code

public function testGetMinimalRepresentativeSubsetInvalidInput() {
  $this
    ->expectException(\AssertionError::class);
  $this
    ->expectExceptionMessage('$libraries can\'t contain duplicate items.');
  $this->libraryDependencyResolver
    ->getMinimalRepresentativeSubset([
    'test/no_deps_a',
    'test/no_deps_a',
  ]);
}