(t *testing.T, argType string, aName, bName string, a, b []ast.Expr)
| 107 | } |
| 108 | |
| 109 | func compareArgs(t *testing.T, argType string, aName, bName string, a, b []ast.Expr) bool { |
| 110 | return assert.Equal(t, argList(t, a), argList(t, b), "mismatched %s for %s and %s", argType, aName, bName) |
| 111 | } |
| 112 | |
| 113 | func argList(t *testing.T, args []ast.Expr) []string { |
| 114 | defer func() { |
no test coverage detected