You are here

public function LimitedPluginDiscoveryDecoratorTest::testConstruct in Plugin 8.2

@covers ::__construct

File

tests/src/Unit/PluginDiscovery/LimitedPluginDiscoveryDecoratorTest.php, line 41

Class

LimitedPluginDiscoveryDecoratorTest
@coversDefaultClass \Drupal\plugin\PluginDiscovery\LimitedPluginDiscoveryDecorator

Namespace

Drupal\Tests\plugin\Unit\PluginDiscovery

Code

public function testConstruct() {
  $this->sut = new LimitedPluginDiscoveryDecorator($this->pluginManager);
  $this
    ->assertInstanceOf(LimitedPluginDiscoveryDecorator::class, $this->sut);
}