(m matcher.MatcherResult)
| 15 | } |
| 16 | |
| 17 | func newValidationResult(m matcher.MatcherResult) ValidationResult { |
| 18 | return ValidationResult{ |
| 19 | Success: m.Success, |
| 20 | Diff: m.Diff, |
| 21 | } |
| 22 | } |
| 23 | |
| 24 | // Validate validates the test results with the expected values |
| 25 | // The test should hold the result and expected to validate the result |
no outgoing calls