You are here

protected function LibraryDiscoveryTest::setUp in Drupal 10

Same name and namespace in other branches
  1. 8 core/tests/Drupal/Tests/Core/Asset/LibraryDiscoveryTest.php \Drupal\Tests\Core\Asset\LibraryDiscoveryTest::setUp()
  2. 9 core/tests/Drupal/Tests/Core/Asset/LibraryDiscoveryTest.php \Drupal\Tests\Core\Asset\LibraryDiscoveryTest::setUp()

Overrides UnitTestCase::setUp

File

core/tests/Drupal/Tests/Core/Asset/LibraryDiscoveryTest.php, line 65

Class

LibraryDiscoveryTest
@coversDefaultClass \Drupal\Core\Asset\LibraryDiscovery @group Asset

Namespace

Drupal\Tests\Core\Asset

Code

protected function setUp() : void {
  parent::setUp();
  $this->cacheTagsInvalidator = $this
    ->createMock('Drupal\\Core\\Cache\\CacheTagsInvalidatorInterface');
  $this->libraryDiscoveryCollector = $this
    ->getMockBuilder('Drupal\\Core\\Asset\\LibraryDiscoveryCollector')
    ->disableOriginalConstructor()
    ->getMock();
  $this->libraryDiscovery = new LibraryDiscovery($this->libraryDiscoveryCollector, $this->cacheTagsInvalidator);
  $this->libraryDiscoveryCollector
    ->expects($this
    ->once())
    ->method('get')
    ->with('test')
    ->willReturn($this->libraryData);
}