Code Coverage
 
Classes and Traits
Functions and Methods
Lines
Total
n/a
0 / 0
n/a
0 / 0
CRAP
n/a
0 / 0
SliderTest
n/a
0 / 0
100.00% covered (success)
100.00%
10 / 10
10
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
 testSetObjectName
100.00% covered (success)
100.00%
1 / 1
1
n/a
0 / 0
 testConstructor
100.00% covered (success)
100.00%
1 / 1
1
n/a
0 / 0
 testSetValue
100.00% covered (success)
100.00%
1 / 1
1
n/a
0 / 0
 testSetValues
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
 testOnDocumentReady
100.00% covered (success)
100.00%
1 / 1
1
n/a
0 / 0
 testAfterAdd
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
<?php
namespace Test\Ease\JQuery;
use Ease\JQuery\Slider;
/**
 * Generated by PHPUnit_SkeletonGenerator on 2016-01-17 at 23:58:25.
 */
class SliderTest extends UIPartTest
{
    /**
     * @var Slider
     */
    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 Slider('Slider');
    }
    /**
     * Tears down the fixture, for example, closes a network connection.
     * This method is called after a test is executed.
     */
    protected function tearDown()
    {
    }
    /**
     * @covers Ease\JQuery\Slider::setObjectName
     *
     * @todo   Implement testSetObjectName().
     */
    public function testSetObjectName()
    {
        // Remove the following lines when you implement this test.
        $this->markTestIncomplete(
            'This test has not been implemented yet.'
        );
    }
    public function testConstructor()
    {
        $classname = get_class($this->object);
        // Get mock, without the constructor being called
        $mock = $this->getMockBuilder($classname)
            ->disableOriginalConstructor()
            ->getMockForAbstractClass();
        $mock->__construct('test');
    }
    /**
     * @covers Ease\JQuery\Slider::setValue
     *
     * @todo   Implement testSetValue().
     */
    public function testSetValue()
    {
        // Remove the following lines when you implement this test.
        $this->markTestIncomplete(
            'This test has not been implemented yet.'
        );
    }
    /**
     * @covers Ease\JQuery\Slider::setValues
     *
     * @todo   Implement testSetValues().
     */
    public function testSetValues()
    {
        // Remove the following lines when you implement this test.
        $this->markTestIncomplete(
            'This test has not been implemented yet.'
        );
    }
    /**
     * @covers Ease\JQuery\Slider::getTagName
     *
     * @todo   Implement testGetTagName().
     */
    public function testGetTagName()
    {
        // Remove the following lines when you implement this test.
        $this->markTestIncomplete(
            'This test has not been implemented yet.'
        );
    }
    /**
     * @covers Ease\JQuery\Slider::onDocumentReady
     *
     * @todo   Implement testOnDocumentReady().
     */
    public function testOnDocumentReady()
    {
        // Remove the following lines when you implement this test.
        $this->markTestIncomplete(
            'This test has not been implemented yet.'
        );
    }
    /**
     * @covers Ease\JQuery\Slider::afterAdd
     *
     * @todo   Implement testAfterAdd().
     */
    public function testAfterAdd()
    {
        // Remove the following lines when you implement this test.
        $this->markTestIncomplete(
            'This test has not been implemented yet.'
        );
    }
    /**
     * @covers Ease\JQuery\Slider::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.'
        );
    }
}