String2Int64
(t *testing.T)
| 54 | |
| 55 | //String2Int64 |
| 56 | func Test_String2Int64_2(t *testing.T) { |
| 57 | str := "a0200000010" |
| 58 | b, e := String2Int64(str) |
| 59 | |
| 60 | t.Log(str, "String to Int64: ", b) |
| 61 | test.NotNil(t, e) |
| 62 | test.Equal(t, int64(0), b) |
| 63 | } |
| 64 | |
| 65 | //Int642String |
| 66 | func Test_Int642String_1(t *testing.T) { |
nothing calls this directly
no test coverage detected