Total Complexity | 1 |
Total Lines | 14 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
21 | abstract class AbstractTestKeyLoader extends TestCase |
||
22 | { |
||
23 | /** @var KeyLoaderInterface */ |
||
24 | protected $keyLoader; |
||
25 | |||
26 | /** |
||
27 | * Test load key from invalid type. |
||
28 | * |
||
29 | * @expectedException \InvalidArgumentException |
||
30 | * @expectedExceptionMessage The key type must be "public" or "private", "wrongType" given. |
||
31 | */ |
||
32 | public function testLoadKeyFromWrongType() |
||
37 |