(expected, actual interface{}, description string, t *testing.T)
| 83 | } |
| 84 | |
| 85 | func validate(expected, actual interface{}, description string, t *testing.T) { |
| 86 | if expected != actual { |
| 87 | t.Errorf("expected %v %s in main function but found %v", expected, description, actual) |
| 88 | } |
| 89 | } |
| 90 | |
| 91 | func expectErrorFromUndump(expected error, data interface{}, t *testing.T) { |
| 92 | l := NewState() |
no outgoing calls
no test coverage detected
searching dependent graphs…