(x interface{})
| 405 | } |
| 406 | |
| 407 | func (m *logsAfterMatcher) Matches(x interface{}) bool { |
| 408 | p, ok := x.(database.GetProvisionerLogsAfterIDParams) |
| 409 | if !ok { |
| 410 | return false |
| 411 | } |
| 412 | return m.params == p |
| 413 | } |
| 414 | |
| 415 | func (m *logsAfterMatcher) String() string { |
| 416 | return fmt.Sprintf("%+v", m.params) |
no outgoing calls
no test coverage detected