(expected, got string, t *testing.T)
| 635 | } |
| 636 | |
| 637 | func matchStringArg(expected, got string, t *testing.T) { |
| 638 | if expected != got { |
| 639 | t.Errorf("Expected %q, got %q", expected, got) |
| 640 | } |
| 641 | } |
| 642 | |
| 643 | func matchByteArg(expected, got []byte, t *testing.T) { |
| 644 | if !reflect.DeepEqual(expected, got) { |
no test coverage detected