Code Coverage
 
Classes and Traits
Functions and Methods
Lines
Total
n/a
0 / 0
n/a
0 / 0
CRAP
n/a
0 / 0
WebPageTest
n/a
0 / 0
100.00% covered (success)
100.00%
14 / 14
14
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
 testSetTagID
100.00% covered (success)
100.00%
1 / 1
1
n/a
0 / 0
 testAddItem
100.00% covered (success)
100.00%
1 / 1
1
n/a
0 / 0
 testIncludeJavaScript
100.00% covered (success)
100.00%
1 / 1
1
n/a
0 / 0
 testAddJavaScript
100.00% covered (success)
100.00%
1 / 1
1
n/a
0 / 0
 testAddToScriptsStack
100.00% covered (success)
100.00%
1 / 1
1
n/a
0 / 0
 testAddCSS
100.00% covered (success)
100.00%
1 / 1
1
n/a
0 / 0
 testIncludeCss
100.00% covered (success)
100.00%
1 / 1
1
n/a
0 / 0
 testGetStatusMessagesAsHtml
100.00% covered (success)
100.00%
1 / 1
1
n/a
0 / 0
 testSetSkin
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
 testFinalizeRegistred
100.00% covered (success)
100.00%
1 / 1
1
n/a
0 / 0
 testSetPageTitle
100.00% covered (success)
100.00%
1 / 1
1
n/a
0 / 0
<?php
namespace Test\Ease;
use Ease\WebPage;
/**
 * Generated by PHPUnit_SkeletonGenerator on 2016-01-17 at 23:58:34.
 */
class WebPageTest extends PageTest
{
    /**
     * @var WebPage
     */
    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 WebPage();
    }
    /**
     * Tears down the fixture, for example, closes a network connection.
     * This method is called after a test is executed.
     */
    protected function tearDown()
    {
    }
    /**
     * @covers Ease\WebPage::setTagID
     *
     * @todo   Implement testSetTagID().
     */
    public function testSetTagID()
    {
        // Remove the following lines when you implement this test.
        $this->markTestIncomplete(
            'This test has not been implemented yet.'
        );
    }
    /**
     * @covers Ease\WebPage::addItem
     *
     * @todo   Implement testAddItem().
     */
    public function testAddItem()
    {
        // Remove the following lines when you implement this test.
        $this->markTestIncomplete(
            'This test has not been implemented yet.'
        );
    }
    /**
     * @covers Ease\WebPage::includeJavaScript
     *
     * @todo   Implement testIncludeJavaScript().
     */
    public function testIncludeJavaScript()
    {
        // Remove the following lines when you implement this test.
        $this->markTestIncomplete(
            'This test has not been implemented yet.'
        );
    }
    /**
     * @covers Ease\WebPage::addJavaScript
     *
     * @todo   Implement testAddJavaScript().
     */
    public function testAddJavaScript()
    {
        // Remove the following lines when you implement this test.
        $this->markTestIncomplete(
            'This test has not been implemented yet.'
        );
    }
    /**
     * @covers Ease\WebPage::addToScriptsStack
     *
     * @todo   Implement testAddToScriptsStack().
     */
    public function testAddToScriptsStack()
    {
        // Remove the following lines when you implement this test.
        $this->markTestIncomplete(
            'This test has not been implemented yet.'
        );
    }
    /**
     * @covers Ease\WebPage::addCSS
     *
     * @todo   Implement testAddCSS().
     */
    public function testAddCSS()
    {
        // Remove the following lines when you implement this test.
        $this->markTestIncomplete(
            'This test has not been implemented yet.'
        );
    }
    /**
     * @covers Ease\WebPage::includeCss
     *
     * @todo   Implement testIncludeCss().
     */
    public function testIncludeCss()
    {
        // Remove the following lines when you implement this test.
        $this->markTestIncomplete(
            'This test has not been implemented yet.'
        );
    }
    /**
     * @covers Ease\WebPage::getStatusMessagesAsHtml
     *
     * @todo   Implement testGetStatusMessagesAsHtml().
     */
    public function testGetStatusMessagesAsHtml()
    {
        // Remove the following lines when you implement this test.
        $this->markTestIncomplete(
            'This test has not been implemented yet.'
        );
    }
    /**
     * @covers Ease\WebPage::setSkin
     *
     * @todo   Implement testSetSkin().
     */
    public function testSetSkin()
    {
        // Remove the following lines when you implement this test.
        $this->markTestIncomplete(
            'This test has not been implemented yet.'
        );
    }
    /**
     * @covers Ease\WebPage::draw
     *
     * @todo   Implement testDraw().
     */
    public function testDraw($whatWant = null)
    {
        // Remove the following lines when you implement this test.
        $this->markTestIncomplete(
            'This test has not been implemented yet.'
        );
    }
    /**
     * @covers Ease\WebPage::finalizeRegistred
     *
     * @todo   Implement testFinalizeRegistred().
     */
    public function testFinalizeRegistred()
    {
        // Remove the following lines when you implement this test.
        $this->markTestIncomplete(
            'This test has not been implemented yet.'
        );
    }
    /**
     * @covers Ease\WebPage::setPageTitle
     *
     * @todo   Implement testSetPageTitle().
     */
    public function testSetPageTitle()
    {
        // Remove the following lines when you implement this test.
        $this->markTestIncomplete(
            'This test has not been implemented yet.'
        );
    }
}