Code Coverage
 
Classes and Traits
Functions and Methods
Lines
Total
n/a
0 / 0
n/a
0 / 0
CRAP
n/a
0 / 0
FieldSetTest
n/a
0 / 0
100.00% covered (success)
100.00%
7 / 7
7
n/a
0 / 0
 setUp
100.00% covered (success)
100.00%
1 / 1
1
n/a
0 / 0
 tearDown
100.00% covered (success)
100.00%
1 / 1
1
n/a
0 / 0
 testSetLegend
100.00% covered (success)
100.00%
1 / 1
1
n/a
0 / 0
 testFinalize
100.00% covered (success)
100.00%
1 / 1
1
n/a
0 / 0
 testGetTagName
100.00% covered (success)
100.00%
1 / 1
1
n/a
0 / 0
 testSetObjectName
100.00% covered (success)
100.00%
1 / 1
1
n/a
0 / 0
 testDraw
100.00% covered (success)
100.00%
1 / 1
1
n/a
0 / 0
<?php
namespace Test\Ease\Html;
use Ease\Html\FieldSet;
/**
 * Generated by PHPUnit_SkeletonGenerator on 2016-01-17 at 23:59:01.
 */
class FieldSetTest extends PairTagTest
{
    /**
     * @var FieldSet
     */
    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\FieldSet('test', 'content');
    }
    /**
     * 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\FieldSet::setLegend
     *
     * @todo   Implement testSetLegend().
     */
    public function testSetLegend()
    {
        // Remove the following lines when you implement this test.
        $this->markTestIncomplete(
            'This test has not been implemented yet.'
        );
    }
    /**
     * @covers Ease\Html\FieldSet::finalize
     *
     * @todo   Implement testFinalize().
     */
    public function testFinalize()
    {
        // Remove the following lines when you implement this test.
        $this->markTestIncomplete(
            'This test has not been implemented yet.'
        );
    }
    /**
     * @covers Ease\Html\FieldSet::getTagName
     */
    public function testGetTagName()
    {
        $this->assertEquals('test', $this->object->getTagName());
    }
    /**
     * @covers Ease\Html\FieldSet::setObjectName
     */
    public function testSetObjectName()
    {
        $this->assertEquals(get_class($this->object).'@test',
            $this->object->setObjectName());
    }
    /**
     * @covers Ease\Html\FieldSet::draw
     *
     * @param string $what ignored
     */
    public function testDraw($what = null)
    {
        parent::testDraw('
<fieldset>
<legend>test</legend>content</fieldset>');
    }
}