You are here

protected function TourTipPluginDefinitionDecoratorTest::setUp in Plugin 8.2

Overrides UnitTestCase::setUp

File

tests/src/Unit/PluginDefinition/TourTipPluginDefinitionDecoratorTest.php, line 32

Class

TourTipPluginDefinitionDecoratorTest
@coversDefaultClass \Drupal\plugin\PluginDefinition\TourTipPluginDefinitionDecorator

Namespace

Drupal\Tests\plugin\Unit\PluginDefinition

Code

protected function setUp() : void {
  parent::setUp();
  $this->arrayDefinition = [
    'title' => $this
      ->randomMachineName(),
  ];
  $this->sut = new TourTipPluginDefinitionDecorator($this->arrayDefinition);
}