Code Coverage |
||||||||||
Classes and Traits |
Functions and Methods |
Lines |
||||||||
Total | n/a |
0 / 0 |
n/a |
0 / 0 |
CRAP | n/a |
0 / 0 |
|||
FormGroupTest | n/a |
0 / 0 |
|
100.00% |
4 / 4 |
4 | n/a |
0 / 0 |
||
setUp | |
100.00% |
1 / 1 |
1 | n/a |
0 / 0 |
||||
testConstructor | |
100.00% |
1 / 1 |
1 | n/a |
0 / 0 |
||||
testDraw | |
100.00% |
1 / 1 |
1 | n/a |
0 / 0 |
||||
tearDown | |
100.00% |
1 / 1 |
1 | n/a |
0 / 0 |
<?php | |
namespace Test\Ease\TWB; | |
/** | |
* Generated by PHPUnit_SkeletonGenerator on 2016-01-17 at 23:59:47. | |
*/ | |
class FormGroupTest extends \Test\Ease\Html\DivTest | |
{ | |
/** | |
* @var FormGroup | |
*/ | |
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\TWB\FormGroup('Label', | |
new \Ease\Html\InputTextTag('text')); | |
} | |
public function testConstructor() | |
{ | |
$classname = get_class($this->object); | |
// Get mock, without the constructor being called | |
$mock = $this->getMockBuilder($classname) | |
->disableOriginalConstructor() | |
->getMockForAbstractClass(); | |
$mock->__construct('Label', new \Ease\Html\InputTextTag('text')); | |
} | |
/** | |
* @covers Ease\TWB\FormGroup::draw | |
*/ | |
public function testDraw($whatWant = null) | |
{ | |
parent::testDraw(' | |
<div class="form-group"> | |
<label for="Label">Label</label> | |
<input type="text" name="text" class="form-control" id="Label" /></div>'); | |
} | |
/** | |
* Tears down the fixture, for example, closes a network connection. | |
* This method is called after a test is executed. | |
*/ | |
protected function tearDown() | |
{ | |
} | |
} |