| Conditions | 1 |
| Total Lines | 6 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | package com.hltech.vaunt.validator; |
||
| 30 | static ValidationResult failure( |
||
| 31 | Contract expectation, Contract capability, ValidationStatus... errors) { |
||
| 32 | return new ValidationResult( |
||
| 33 | false, |
||
| 34 | String.format("Expectation: %s, Capability: %s", expectation, capability), |
||
| 35 | Arrays.asList(errors)); |
||
| 36 | } |
||
| 38 |