phpmyadmin/test/classes/Properties/Plugins/PluginPropertyItemTest.php
Maurício Meneghini Fauth db3da81056 Remove some useless comments
Signed-off-by: Maurício Meneghini Fauth <mauricio@fauth.dev>
2020-10-13 19:56:56 -03:00

41 lines
821 B
PHP

<?php
declare(strict_types=1);
namespace PhpMyAdmin\Tests\Properties\Plugins;
use PhpMyAdmin\Properties\Plugins\PluginPropertyItem;
use PhpMyAdmin\Tests\AbstractTestCase;
class PluginPropertyItemTest extends AbstractTestCase
{
/** @var PluginPropertyItem */
protected $stub;
/**
* Configures global environment.
*/
protected function setUp(): void
{
parent::setUp();
$this->stub = $this->getMockForAbstractClass(PluginPropertyItem::class);
}
/**
* tearDown for test cases
*/
protected function tearDown(): void
{
parent::tearDown();
unset($this->stub);
}
public function testGetPropertyType(): void
{
$this->assertEquals(
'plugin',
$this->stub->getPropertyType()
);
}
}