| Conditions | 1 |
| Paths | 1 |
| Total Lines | 10 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 30 | public function testRun() |
||
| 31 | { |
||
| 32 | $this->checkSuite->run(); |
||
| 33 | |||
| 34 | $this->assertEquals( |
||
| 35 | 58, |
||
| 36 | $this->checkSuite->getScore(), |
||
| 37 | 'Checks failed. Details: ' . json_encode($this->checkSuite->getCheckDetails()) |
||
| 38 | ); |
||
| 39 | $this->assertEquals(0, $this->checkSuite->getCheckDetails()['ci_passing']['points']); |
||
| 40 | } |
||
| 42 |