Code Coverage
 
Classes and Traits
Functions and Methods
Lines
Total
n/a
0 / 0
n/a
0 / 0
CRAP
n/a
0 / 0
ToMemoryTest
n/a
0 / 0
100.00% covered (success)
100.00%
9 / 9
9
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
 testSingleton
100.00% covered (success)
100.00%
1 / 1
1
n/a
0 / 0
 testSetStoreMessages
100.00% covered (success)
100.00%
1 / 1
1
n/a
0 / 0
 testResetStoredMessages
100.00% covered (success)
100.00%
1 / 1
1
n/a
0 / 0
 testGetStoredMessages
100.00% covered (success)
100.00%
1 / 1
1
n/a
0 / 0
 testAddToLog
100.00% covered (success)
100.00%
1 / 1
1
n/a
0 / 0
 testError
100.00% covered (success)
100.00%
1 / 1
1
n/a
0 / 0
 testGetLogStyle
100.00% covered (success)
100.00%
1 / 1
1
n/a
0 / 0
<?php
namespace Test\Ease\Logger;
use Ease\Logger\ToMemory;
/**
 * Generated by PHPUnit_SkeletonGenerator on 2016-01-17 at 23:59:52.
 */
class ToMemoryTest extends \Test\Ease\AtomTest
{
    /**
     * @var Logger
     */
    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 ToMemory();
    }
    /**
     * Tears down the fixture, for example, closes a network connection.
     * This method is called after a test is executed.
     */
    protected function tearDown()
    {
    }
    /**
     * @covers Ease\Logger\ToMemory::singleton
     *
     * @todo   Implement testSingleton().
     */
    public function testSingleton()
    {
        // Remove the following lines when you implement this test.
        $this->markTestIncomplete(
            'This test has not been implemented yet.'
        );
    }
    /**
     * @covers Ease\Logger\ToMemory::setStoreMessages
     *
     * @todo   Implement testSetStoreMessages().
     */
    public function testSetStoreMessages()
    {
        // Remove the following lines when you implement this test.
        $this->markTestIncomplete(
            'This test has not been implemented yet.'
        );
    }
    /**
     * @covers Ease\Logger\ToMemory::resetStoredMessages
     *
     * @todo   Implement testResetStoredMessages().
     */
    public function testResetStoredMessages()
    {
        // Remove the following lines when you implement this test.
        $this->markTestIncomplete(
            'This test has not been implemented yet.'
        );
    }
    /**
     * @covers Ease\Logger\ToMemory::getStoredMessages
     *
     * @todo   Implement testGetStoredMessages().
     */
    public function testGetStoredMessages()
    {
        // Remove the following lines when you implement this test.
        $this->markTestIncomplete(
            'This test has not been implemented yet.'
        );
    }
    /**
     * @covers Ease\Logger\ToMemory::addToLog
     *
     * @todo   Implement testAddToLog().
     */
    public function testAddToLog()
    {
        // Remove the following lines when you implement this test.
        $this->markTestIncomplete(
            'This test has not been implemented yet.'
        );
    }
    /**
     * @covers Ease\Logger\ToMemory::error
     *
     * @todo   Implement testError().
     */
    public function testError()
    {
        // Remove the following lines when you implement this test.
        $this->markTestIncomplete(
            'This test has not been implemented yet.'
        );
    }
    /**
     * @covers Ease\Logger\ToMemory::getLogStyle
     *
     * @todo   Implement testGetLogStyle().
     */
    public function testGetLogStyle()
    {
        // Remove the following lines when you implement this test.
        $this->markTestIncomplete(
            'This test has not been implemented yet.'
        );
    }
}