phpmyadmin/test/classes/Properties/Options/OptionsPropertyItemTest.php
Maurício Meneghini Fauth 5c7ee91beb Add namespace to properties tests
Signed-off-by: Maurício Meneghini Fauth <mauriciofauth@gmail.com>
2017-09-20 13:03:50 -03:00

105 lines
2.2 KiB
PHP

<?php
/* vim: set expandtab sw=4 ts=4 sts=4: */
/**
* tests for PhpMyAdmin\Properties\Options\OptionsPropertyItem class
*
* @package PhpMyAdmin-test
*/
namespace PhpMyAdmin\Tests\Properties\Options;
use PHPUnit_Framework_TestCase as TestCase;
/**
* Tests for PhpMyAdmin\Properties\Options\OptionsPropertyItem class
*
* @package PhpMyAdmin-test
*/
class OptionsPropertyItemTest extends TestCase
{
protected $stub;
/**
* Configures global environment.
*
* @return void
*/
protected function setup()
{
$this->stub = $this->getMockForAbstractClass('PhpMyAdmin\Properties\Options\OptionsPropertyItem');
}
/**
* tearDown for test cases
*
* @return void
*/
public function tearDown()
{
unset($this->stub);
}
/**
* Test for
* - PhpMyAdmin\Properties\Options\OptionsPropertyItem::getName
* - PhpMyAdmin\Properties\Options\OptionsPropertyItem::setName
*
* @return void
*/
public function testGetSetName()
{
$this->stub->setName('name123');
$this->assertEquals(
'name123',
$this->stub->getName()
);
}
/**
* Test for
* - PhpMyAdmin\Properties\Options\OptionsPropertyItem::getText
* - PhpMyAdmin\Properties\Options\OptionsPropertyItem::setText
*
* @return void
*/
public function testGetSetText()
{
$this->stub->setText('text123');
$this->assertEquals(
'text123',
$this->stub->getText()
);
}
/**
* Test for
* - PhpMyAdmin\Properties\Options\OptionsPropertyItem::getForce
* - PhpMyAdmin\Properties\Options\OptionsPropertyItem::setForce
*
* @return void
*/
public function testGetSetForce()
{
$this->stub->setForce('force123');
$this->assertEquals(
'force123',
$this->stub->getForce()
);
}
/**
* Test for PhpMyAdmin\Properties\Options\OptionsPropertyItem::getPropertyType
*
* @return void
*/
public function testGetPropertyType()
{
$this->assertEquals(
'options',
$this->stub->getPropertyType()
);
}
}