phpmyadmin/test/classes/Properties/PropertyItemTest.php
Gabriel Caruso 45828153b6 Use PSR-1 for PHPUnit TestCase
Signed-off-by: Gabriel Caruso <carusogabriel34@gmail.com>
2017-11-06 06:29:04 -02:00

54 lines
981 B
PHP

<?php
/* vim: set expandtab sw=4 ts=4 sts=4: */
/**
* tests for PhpMyAdmin\Properties\PropertyItem class
*
* @package PhpMyAdmin-test
*/
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()
{
$this->stub = $this->getMockForAbstractClass('PhpMyAdmin\Properties\PropertyItem');
}
/**
* tearDown for test cases
*
* @return void
*/
public function tearDown()
{
unset($this->stub);
}
/**
* Test for PhpMyAdmin\Properties\PropertyItem::getGroup
*
* @return void
*/
public function testGetGroup()
{
$this->assertEquals(
null,
$this->stub->getGroup()
);
}
}