phpmyadmin/test/classes/Properties/PropertyItemTest.php
Maurício Meneghini Fauth 1a14b3e4d3 Remove vim modelines
These settings are no longer required as they are guaranteed through
other coding standard tools.

Signed-off-by: Maurício Meneghini Fauth <mauricio@fauth.dev>
2019-09-02 09:43:21 -03:00

55 lines
980 B
PHP

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