| Total Complexity | 7 |
| Total Lines | 40 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 7 | class ErrorHandlerBuilderTest extends \PHPUnit_Framework_TestCase |
||
| 8 | { |
||
| 9 | public function setUp() |
||
| 10 | { |
||
| 11 | $this->builder = new ErrorHandlerBuilder(); |
||
|
|
|||
| 12 | } |
||
| 13 | |||
| 14 | public function testGetErrorLevelMap() |
||
| 15 | { |
||
| 16 | $this->assertSame(array(), $this->builder->getErrorLevelMap()); |
||
| 17 | } |
||
| 18 | |||
| 19 | public function testSetErrorLevelMap() |
||
| 25 | } |
||
| 26 | |||
| 27 | public function testGetExceptionLevel() |
||
| 30 | } |
||
| 31 | |||
| 32 | public function testSetExceptionLevel() |
||
| 36 | } |
||
| 37 | |||
| 38 | public function testGetFatalLevel() |
||
| 39 | { |
||
| 40 | $this->assertNull($this->builder->getFatalLevel()); |
||
| 41 | } |
||
| 42 | |||
| 43 | public function testSetFatalLevel() |
||
| 47 | } |
||
| 48 | } |
||
| 49 |