Code Coverage |
||||||||||
Classes and Traits |
Functions and Methods |
Lines |
||||||||
Total | n/a |
0 / 0 |
n/a |
0 / 0 |
CRAP | n/a |
0 / 0 |
|||
ToSyslogTest | n/a |
0 / 0 |
|
100.00% |
6 / 6 |
6 | n/a |
0 / 0 |
||
setUp | |
100.00% |
1 / 1 |
1 | n/a |
0 / 0 |
||||
tearDown | |
100.00% |
1 / 1 |
1 | n/a |
0 / 0 |
||||
testAddToLog | |
100.00% |
1 / 1 |
1 | n/a |
0 / 0 |
||||
testError | |
100.00% |
1 / 1 |
1 | n/a |
0 / 0 |
||||
test__destruct | |
100.00% |
1 / 1 |
1 | n/a |
0 / 0 |
||||
testGetLogStyle | |
100.00% |
1 / 1 |
1 | n/a |
0 / 0 |
<?php | |
namespace Test\Ease\Logger; | |
use Ease\Logger\ToSyslog; | |
/** | |
* Generated by PHPUnit_SkeletonGenerator on 2016-01-17 at 23:58:23. | |
*/ | |
class ToSyslogTest extends ToMemoryTest | |
{ | |
/** | |
* @var Ease\Logger\ToSyslog | |
*/ | |
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 ToSyslog(); | |
} | |
/** | |
* 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\ToSyslog::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\ToSyslog::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\ToSyslog::__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\ToSyslog::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.' | |
); | |
} | |
} |