Code Coverage |
||||||||||
Classes and Traits |
Functions and Methods |
Lines |
||||||||
Total | n/a |
0 / 0 |
n/a |
0 / 0 |
CRAP | n/a |
0 / 0 |
|||
UlTagTest | n/a |
0 / 0 |
|
100.00% |
5 / 5 |
6 | n/a |
0 / 0 |
||
setUp | |
100.00% |
1 / 1 |
1 | n/a |
0 / 0 |
||||
tearDown | |
100.00% |
1 / 1 |
1 | n/a |
0 / 0 |
||||
testAddItems | |
100.00% |
1 / 1 |
1 | n/a |
0 / 0 |
||||
testAddItemSmart | |
100.00% |
1 / 1 |
1 | n/a |
0 / 0 |
||||
testDraw | |
100.00% |
1 / 1 |
2 | n/a |
0 / 0 |
<?php | |
namespace Test\Ease\Html; | |
/** | |
* Generated by PHPUnit_SkeletonGenerator on 2016-01-17 at 23:59:10. | |
*/ | |
class UlTagTest extends PairTagTest | |
{ | |
/** | |
* @var UlTag | |
*/ | |
protected $object; | |
/** | |
* Sets up the fixture, for example, opens a network connection. | |
* This method is called before a test is executed. | |
*/ | |
protected function setUp() | |
{ | |
$this->object = new \Ease\Html\UlTag('http://v.s.cz/'); | |
} | |
/** | |
* Tears down the fixture, for example, closes a network connection. | |
* This method is called after a test is executed. | |
*/ | |
protected function tearDown() | |
{ | |
} | |
/** | |
* @covers Ease\Html\UlTag::addItems | |
* | |
* @todo Implement testAddItems(). | |
*/ | |
public function testAddItems() | |
{ | |
// Remove the following lines when you implement this test. | |
$this->markTestIncomplete( | |
'This test has not been implemented yet.' | |
); | |
} | |
/** | |
* @covers Ease\Html\UlTag::addItemSmart | |
* | |
* @todo Implement testAddItemSmart(). | |
*/ | |
public function testAddItemSmart() | |
{ | |
// Remove the following lines when you implement this test. | |
$this->markTestIncomplete( | |
'This test has not been implemented yet.' | |
); | |
} | |
/** | |
* @covers Ease\Html\InputTag::draw | |
*/ | |
public function testDraw($whatWant = null) | |
{ | |
if (is_null($whatWant)) { | |
$whatWant = ' | |
<ul>http://v.s.cz/</ul>'; | |
} | |
parent::testDraw($whatWant); | |
} | |
} |