Total Complexity | 2 |
Total Lines | 21 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
11 | class SleeperExceptionTest extends TestCase |
||
12 | { |
||
13 | |||
14 | public function testBadMethodException() { |
||
15 | $client = new Sleeper(); |
||
16 | |||
17 | $this->expectException(BadMethodCallException::class); |
||
18 | |||
19 | $testCls = $client->TestClass(); |
||
20 | } |
||
21 | |||
22 | public function testSleeperHttpException() { |
||
32 | } |
||
33 | |||
35 |