| Conditions | 1 | 
| Paths | 1 | 
| Total Lines | 7 | 
| Code Lines | 4 | 
| Lines | 0 | 
| Ratio | 0 % | 
| Changes | 0 | ||
| 1 | <?php  | 
            ||
| 14 | public function itRepresentsACertificateNotFoundException()  | 
            ||
| 15 |     { | 
            ||
| 16 | $exception = new CertificateNotFoundException(CertificateType::PRIVATE_KEY(), 'path');  | 
            ||
| 17 | |||
| 18 |         $this->assertEquals('Could not find certificate "private.pem" in: path', $exception->getMessage()); | 
            ||
| 19 | $this->assertInstanceOf(\Exception::class, $exception);  | 
            ||
| 20 | }  | 
            ||
| 21 | }  | 
            ||
| 22 |