protected function LibraryDiscoveryTest::setUp in Drupal 8
Same name and namespace in other branches
- 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\AssetCode
protected function setUp() {
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);
}