Code Coverage
 
Classes and Traits
Functions and Methods
Lines
Total
n/a
0 / 0
n/a
0 / 0
CRAP
n/a
0 / 0
TableTagTest
n/a
0 / 0
100.00% covered (success)
100.00%
8 / 8
8
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
 testSetHeader
100.00% covered (success)
100.00%
1 / 1
1
n/a
0 / 0
 testAddRowColumns
100.00% covered (success)
100.00%
1 / 1
1
n/a
0 / 0
 testAddRowHeaderColumns
100.00% covered (success)
100.00%
1 / 1
1
n/a
0 / 0
 testIsEmpty
100.00% covered (success)
100.00%
1 / 1
1
n/a
0 / 0
 testPopulate
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;
/**
 * Generated by PHPUnit_SkeletonGenerator on 2016-01-17 at 23:59:07.
 */
class TableTagTest extends PairTagTest
{
    /**
     * @var TableTag
     */
    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\TableTag();
    }
    /**
     * 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\TableTag::setHeader
     *
     * @todo   Implement testSetHeader().
     */
    public function testSetHeader()
    {
        // Remove the following lines when you implement this test.
        $this->markTestIncomplete(
            'This test has not been implemented yet.'
        );
    }
    /**
     * @covers Ease\Html\TableTag::addRowColumns
     *
     * @todo   Implement testAddRowColumns().
     */
    public function testAddRowColumns()
    {
        // Remove the following lines when you implement this test.
        $this->markTestIncomplete(
            'This test has not been implemented yet.'
        );
    }
    /**
     * @covers Ease\Html\TableTag::addRowHeaderColumns
     *
     * @todo   Implement testAddRowHeaderColumns().
     */
    public function testAddRowHeaderColumns()
    {
        // Remove the following lines when you implement this test.
        $this->markTestIncomplete(
            'This test has not been implemented yet.'
        );
    }
    /**
     * @covers Ease\Html\TableTag::isEmpty
     *
     * @todo   Implement testIsEmpty().
     */
    public function testIsEmpty()
    {
        // Remove the following lines when you implement this test.
        $this->markTestIncomplete(
            'This test has not been implemented yet.'
        );
    }
    /**
     * @covers Ease\Html\TableTag::populate
     *
     * @todo   Implement testPopulate().
     */
    public function testPopulate()
    {
        // Remove the following lines when you implement this test.
        $this->markTestIncomplete(
            'This test has not been implemented yet.'
        );
    }
    /**
     * @covers Ease\Html\TableTag::draw
     */
    public function testDraw($whatWant = null)
    {
        parent::testDraw('
<table>
<thead></thead>
<tbody></tbody></table>');
    }
}