(f32sp *[]float32)
| 18 | } |
| 19 | |
| 20 | func setUpF32SFlagSetWithDefault(f32sp *[]float32) *FlagSet { |
| 21 | f := NewFlagSet("test", ContinueOnError) |
| 22 | f.Float32SliceVar(f32sp, "f32s", []float32{0.0, 1.0}, "Command separated list!") |
| 23 | return f |
| 24 | } |
| 25 | |
| 26 | func TestEmptyF32S(t *testing.T) { |
| 27 | var f32s []float32 |
no test coverage detected