(t *testing.T)
| 15 | } |
| 16 | |
| 17 | func TestInt64(t *testing.T) { |
| 18 | i := []int64{1, 2, 3} |
| 19 | s := JoinInt64s(i, ",") |
| 20 | ii, _ := SplitInt64s(s, ",") |
| 21 | if !reflect.DeepEqual(i, ii) { |
| 22 | t.FailNow() |
| 23 | } |
| 24 | } |
nothing calls this directly
no test coverage detected