phpmyadmin/test/classes/Properties/PropertyItemTest.php
Maurício Meneghini Fauth 16a0660a78
Add native property types to test classes
Signed-off-by: Maurício Meneghini Fauth <mauricio@fauth.dev>
2023-02-27 01:17:22 -03:00

45 lines
886 B
PHP

<?php
declare(strict_types=1);
namespace PhpMyAdmin\Tests\Properties;
use PhpMyAdmin\Properties\PropertyItem;
use PhpMyAdmin\Tests\AbstractTestCase;
use PHPUnit\Framework\MockObject\MockObject;
/** @covers \PhpMyAdmin\Properties\PropertyItem */
class PropertyItemTest extends AbstractTestCase
{
/** @var PropertyItem&MockObject */
protected PropertyItem $stub;
/**
* Configures global environment.
*/
protected function setUp(): void
{
parent::setUp();
$this->stub = $this->getMockForAbstractClass(PropertyItem::class);
}
/**
* tearDown for test cases
*/
protected function tearDown(): void
{
parent::tearDown();
unset($this->stub);
}
public function testGetGroup(): void
{
$this->assertEquals(
null,
$this->stub->getGroup(),
);
}
}