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