You are here

public function UrlProcessorPluginManagerTest::testConstruct in Facets 8

Tests plugin manager constructor.

File

tests/src/Unit/UrlProcessor/UrlProcessorPluginManagerTest.php, line 93

Class

UrlProcessorPluginManagerTest
Unit test for url processor plugin manager.

Namespace

Drupal\Tests\facets\Unit\UrlProcessor

Code

public function testConstruct() {
  $namespaces = new ArrayObject();
  $sut = new UrlProcessorPluginManager($namespaces, $this->cache, $this->moduleHandler, $this->translator);
  $this
    ->assertInstanceOf(UrlProcessorPluginManager::class, $sut);
}