(vals ...driver.Value)
| 43 | } |
| 44 | |
| 45 | func MatchesValues(vals ...driver.Value) *DriverValueMatcher { |
| 46 | return &DriverValueMatcher{ |
| 47 | values: vals, |
| 48 | } |
| 49 | } |
| 50 | |
| 51 | // Matches returns whether x is a match. |
| 52 | func (d *DriverValueMatcher) Matches(x interface{}) bool { |
no outgoing calls
no test coverage detected
searching dependent graphs…