| Conditions | 1 |
| Paths | 1 |
| Total Lines | 8 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 1 |
| 1 | <?php |
||
| 30 | public function getDefaultCountableTemplate() |
||
| 31 | { |
||
| 32 | $count = $this->getCount(); |
||
| 33 | return new ArrayTemplate([ |
||
| 34 | 'default' => "Expected {{actual}} to have a length above {{expected}} but got $count", |
||
| 35 | 'negated' => "Expected {{actual}} to not have a length above {{expected}}" |
||
| 36 | ]); |
||
| 37 | } |
||
| 38 | |||
| 50 |