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