| Conditions | 1 |
| Paths | 1 |
| Total Lines | 13 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 10 | public function testStatusOk() |
||
| 11 | { |
||
| 12 | $file = __DIR__.'/../../data/signed.pdf'; |
||
| 13 | |||
| 14 | $type = 'pdf'; |
||
| 15 | |||
| 16 | /** @var CheckResult $result */ |
||
| 17 | $result = $this->client->get( |
||
| 18 | new Check($type, $file) |
||
| 19 | ); |
||
| 20 | |||
| 21 | $this->assertSame('ok', $result->getStatus()); |
||
| 22 | $this->assertNotEmpty($result->getStructure()); |
||
| 23 | } |
||
| 25 |