| Total Complexity | 2 |
| Total Lines | 13 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 21 | class Test extends CheckTestCase |
||
| 22 | { |
||
| 23 | public function testIntegration() |
||
| 24 | { |
||
| 25 | $this->iterateConfTest(__DIR__.'/config.example.yml'); |
||
| 26 | } |
||
| 27 | |||
| 28 | public function testCheck() |
||
| 29 | { |
||
| 30 | $check = new a Check('/tmp/test.yml'); |
||
| 31 | |||
| 32 | $this->assertInstanceOf(CheckInterface::class, $check); |
||
| 33 | $this->assertInstanceOf(ResultInterface::class, $check->check()); |
||
| 34 | } |
||
| 36 |