(t *testing.T)
| 36 | } |
| 37 | |
| 38 | func Test_Int2String_1(t *testing.T) { |
| 39 | vint := 9876543210 |
| 40 | s := Int2String(vint) |
| 41 | t.Log(vint, "Int to String: ", s) |
| 42 | test.Equal(t, "9876543210", s) |
| 43 | } |
| 44 | |
| 45 | //String2Int64 |
| 46 | func Test_String2Int64_1(t *testing.T) { |
nothing calls this directly
no test coverage detected