| 8 | func TestAdd(t *testing.T) { |
| 9 | t.Parallel() |
| 10 | type testCase struct { |
| 11 | a, b float64 |
| 12 | want float64 |
| 13 | } |
| 14 | testCases := []testCase{ |
| 15 | {a: 2, b: 2, want: 4}, |
| 16 | {a: 1, b: 1, want: 2}, |
nothing calls this directly
no outgoing calls
no test coverage detected