| Conditions | 1 |
| Paths | 1 |
| Total Lines | 7 |
| Code Lines | 4 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 14 | public function itRepresentsATokenNotFoundException() |
||
| 15 | { |
||
| 16 | $exception = new TokenNotFoundException(TokenType::INSTALLATION_TOKEN(), '/tmp/tokens'); |
||
| 17 | |||
| 18 | $this->assertInstanceOf(\Exception::class, $exception); |
||
| 19 | $this->assertEquals('Could not find token "installation.token" in path: /tmp/tokens', $exception->getMessage()); |
||
| 20 | } |
||
| 21 | } |
||
| 23 |