Code Coverage |
||||||||||
Classes and Traits |
Functions and Methods |
Lines |
||||||||
Total | |
0.00% |
0 / 1 |
|
0.00% |
0 / 14 |
CRAP | |
0.00% |
0 / 39 |
ToFileTest | |
0.00% |
0 / 1 |
|
0.00% |
0 / 14 |
210 | |
0.00% |
0 / 39 |
setUp | |
0.00% |
0 / 1 |
2 | |
0.00% |
0 / 2 |
|||
tearDown | |
0.00% |
0 / 1 |
2 | |
0.00% |
0 / 1 |
|||
testSingleton | |
0.00% |
0 / 1 |
2 | |
0.00% |
0 / 3 |
|||
testSetupLogFiles | |
0.00% |
0 / 1 |
2 | |
0.00% |
0 / 3 |
|||
testSetStoreMessages | |
0.00% |
0 / 1 |
2 | |
0.00% |
0 / 3 |
|||
testResetStoredMessages | |
0.00% |
0 / 1 |
2 | |
0.00% |
0 / 3 |
|||
testGetStoredMessages | |
0.00% |
0 / 1 |
2 | |
0.00% |
0 / 3 |
|||
testAddToLog | |
0.00% |
0 / 1 |
2 | |
0.00% |
0 / 3 |
|||
testRenameLogFile | |
0.00% |
0 / 1 |
2 | |
0.00% |
0 / 3 |
|||
testSetRunType | |
0.00% |
0 / 1 |
2 | |
0.00% |
0 / 3 |
|||
testTestDirectory | |
0.00% |
0 / 1 |
2 | |
0.00% |
0 / 3 |
|||
testError | |
0.00% |
0 / 1 |
2 | |
0.00% |
0 / 3 |
|||
test__destruct | |
0.00% |
0 / 1 |
2 | |
0.00% |
0 / 3 |
|||
testGetLogStyle | |
0.00% |
0 / 1 |
2 | |
0.00% |
0 / 3 |
<?php | |
namespace Test\Ease\Logger; | |
use Ease\Logger\ToFile; | |
/** | |
* Generated by PHPUnit_SkeletonGenerator on 2016-01-17 at 23:59:52. | |
*/ | |
class ToFileTest extends ToMemoryTest | |
{ | |
/** | |
* @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 ToFile(); | |
} | |
/** | |
* 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\ToFile::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\ToFile::setupLogFiles | |
* | |
* @todo Implement testSetupLogFiles(). | |
*/ | |
public function testSetupLogFiles() | |
{ | |
// Remove the following lines when you implement this test. | |
$this->markTestIncomplete( | |
'This test has not been implemented yet.' | |
); | |
} | |
/** | |
* @covers Ease\Logger\ToFile::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\ToFile::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\ToFile::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\ToFile::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\ToFile::renameLogFile | |
* | |
* @todo Implement testRenameLogFile(). | |
*/ | |
public function testRenameLogFile() | |
{ | |
// Remove the following lines when you implement this test. | |
$this->markTestIncomplete( | |
'This test has not been implemented yet.' | |
); | |
} | |
/** | |
* @covers Ease\Logger\ToFile::setRunType | |
* | |
* @todo Implement testSetRunType(). | |
*/ | |
public function testSetRunType() | |
{ | |
// Remove the following lines when you implement this test. | |
$this->markTestIncomplete( | |
'This test has not been implemented yet.' | |
); | |
} | |
/** | |
* @covers Ease\Logger\ToFile::testDirectory | |
* | |
* @todo Implement testTestDirectory(). | |
*/ | |
public function testTestDirectory() | |
{ | |
// Remove the following lines when you implement this test. | |
$this->markTestIncomplete( | |
'This test has not been implemented yet.' | |
); | |
} | |
/** | |
* @covers Ease\Logger\ToFile::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\ToFile::__destruct | |
* | |
* @todo Implement test__destruct(). | |
*/ | |
public function test__destruct() | |
{ | |
// Remove the following lines when you implement this test. | |
$this->markTestIncomplete( | |
'This test has not been implemented yet.' | |
); | |
} | |
/** | |
* @covers Ease\Logger\ToFile::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.' | |
); | |
} | |
} |