(t *testing.T)
| 27 | } |
| 28 | |
| 29 | func Test_String2Int_2(t *testing.T) { |
| 30 | str := "1234567890ssss" |
| 31 | b, e := String2Int(str) |
| 32 | |
| 33 | t.Log(str, " String to Int: ", b) |
| 34 | test.NotNil(t, e) |
| 35 | test.Equal(t, 0, b) |
| 36 | } |
| 37 | |
| 38 | func Test_Int2String_1(t *testing.T) { |
| 39 | vint := 9876543210 |
nothing calls this directly
no test coverage detected