(t *testing.T)
| 29 | } |
| 30 | |
| 31 | func TestStringSliceEq(t *testing.T) { |
| 32 | for _, test := range stringSliceEqTests { |
| 33 | var failed bool |
| 34 | |
| 35 | ok := stringSliceEq(test.Left, test.Right) |
| 36 | failed = ok != test.Expected |
| 37 | if failed { |
| 38 | t.Errorf(test.Description, |
| 39 | test.Left, test.Right, // input |
| 40 | ok, // actual output |
| 41 | test.Expected, // expected output |
| 42 | ) |
| 43 | } |
| 44 | } |
| 45 | } |
nothing calls this directly
no test coverage detected