(t *testing.T)
| 6 | ) |
| 7 | |
| 8 | func TestInt32(t *testing.T) { |
| 9 | i := []int32{1, 2, 3} |
| 10 | s := JoinInt32s(i, ",") |
| 11 | ii, _ := SplitInt32s(s, ",") |
| 12 | if !reflect.DeepEqual(i, ii) { |
| 13 | t.FailNow() |
| 14 | } |
| 15 | } |
| 16 | |
| 17 | func TestInt64(t *testing.T) { |
| 18 | i := []int64{1, 2, 3} |
nothing calls this directly
no test coverage detected