ResolveDefaultPluginTest.php in Plugin 8.2
Namespace
Drupal\Tests\plugin\Unit\EventFile
tests/src/Unit/Event/ResolveDefaultPluginTest.phpView source
<?php
namespace Drupal\Tests\plugin\Unit\Event;
use Drupal\Component\Plugin\PluginInspectionInterface;
use Drupal\plugin\Event\ResolveDefaultPlugin;
use Drupal\plugin\PluginType\PluginTypeInterface;
use Drupal\Tests\UnitTestCase;
/**
* @coversDefaultClass \Drupal\plugin\Event\ResolveDefaultPlugin
*
* @group Plugin
*/
class ResolveDefaultPluginTest extends UnitTestCase {
/**
* The plugin type.
*
* @var \Drupal\plugin\PluginType\PluginTypeInterface|\PHPUnit_Framework_MockObject_MockObject
*/
protected $pluginType;
/**
* The class under test.
*
* @var \Drupal\plugin\Event\ResolveDefaultPlugin
*/
protected $sut;
/**
* {@inheritdoc}
*/
protected function setUp() : void {
$this->pluginType = $this
->createMock(PluginTypeInterface::class);
$this->sut = new ResolveDefaultPlugin($this->pluginType);
}
/**
* @covers ::__construct
*/
public function testConstruct() {
$this->sut = new ResolveDefaultPlugin($this->pluginType);
$this
->assertInstanceOf(ResolveDefaultPlugin::class, $this->sut);
}
/**
* @covers ::getPluginType
*/
public function testGetPluginType() {
$this
->assertSame($this->pluginType, $this->sut
->getPluginType());
}
/**
* @covers ::getDefaultPluginInstance
* @covers ::setDefaultPluginInstance
*/
public function testGetDefaultPluginInstance() {
$default_plugin_instance = $this
->createMock(PluginInspectionInterface::class);
$this
->assertNull($this->sut
->getDefaultPluginInstance());
$this
->assertSame($this->sut, $this->sut
->setDefaultPluginInstance($default_plugin_instance));
$this
->assertSame($default_plugin_instance, $this->sut
->getDefaultPluginInstance());
}
}
Classes
Name | Description |
---|---|
ResolveDefaultPluginTest | @coversDefaultClass \Drupal\plugin\Event\ResolveDefaultPlugin |