45 lines
874 B
PHP
45 lines
874 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 $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()
|
|
);
|
|
}
|
|
}
|