| Total Complexity | 2 |
| Total Lines | 14 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 1 |
| 1 | <?php |
||
| 9 | class StatusCodeTest extends TestCase |
||
| 10 | { |
||
| 11 | public function test__callStatic() |
||
| 12 | { |
||
| 13 | $this->assertSame('405 Method Not Allowed', StatusCode::METHOD_NOT_ALLOWED(true)); |
||
|
|
|||
| 14 | $this->assertSame('Method Not Allowed', StatusCode::METHOD_NOT_ALLOWED(false)); |
||
| 15 | $this->assertSame(null, StatusCode::something_non_existent()); |
||
| 16 | } |
||
| 17 | |||
| 18 | public function test_description() |
||
| 23 | } |
||
| 24 | } |
||
| 25 |