1 | <?php |
||
9 | class WWDRTest extends TestCase |
||
10 | { |
||
11 | public function testWWDR() |
||
12 | { |
||
13 | $wwdr = new WWDR(__DIR__.'/../../../cert/wwdr.pem'); |
||
14 | $this->assertInstanceOf(WWDR::class, $wwdr); |
||
15 | } |
||
16 | |||
17 | public function testWWDRException() |
||
18 | { |
||
19 | $this->expectException(FileNotFoundException::class); |
||
20 | new WWDR(__DIR__.'/non-existing-file'); |
||
21 | } |
||
22 | } |