| 227 | type testDifferenceInput[T comparable] [][]T |
| 228 | type testDifferenceOutput[T comparable] []T |
| 229 | type testDifference[T comparable] struct { |
| 230 | input testDifferenceInput[T] |
| 231 | output testDifferenceOutput[T] |
| 232 | } |
| 233 | |
| 234 | func TestDifference(t *testing.T) { |
| 235 | for i, tt := range []testDifference[int]{ |
nothing calls this directly
no outgoing calls
no test coverage detected