Conditions | 1 |
Total Lines | 8 |
Code Lines | 8 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | package com.hltech.vaunt.validator; |
||
16 | static ValidationResult success(Contract expectation) { |
||
17 | return new ValidationResult( |
||
18 | true, |
||
19 | String.format("Matching contract: %s %s, %s", |
||
20 | expectation.getDestinationType(), |
||
21 | expectation.getDestinationName(), |
||
22 | expectation.getBody().getId()), |
||
23 | new ArrayList<>()); |
||
24 | } |
||
38 |