(t *testing.T)
| 138 | } |
| 139 | |
| 140 | func TestReadStrings(t *testing.T) { |
| 141 | have, err := ReadStrings(Strings("foo", "bar")) |
| 142 | if err != nil { |
| 143 | t.Errorf("read: %s", err) |
| 144 | } |
| 145 | if want := []string{"foo", "bar"}; !reflect.DeepEqual(have, want) { |
| 146 | t.Errorf("have %q, want %q", have, want) |
| 147 | } |
| 148 | } |
| 149 | |
| 150 | func TestParse(t *testing.T) { |
| 151 | t.Run("int", func(t *testing.T) { |
nothing calls this directly
no test coverage detected