(t *testing.T)
| 9 | // |
| 10 | |
| 11 | func Test_GetMd5String_1(t *testing.T) { |
| 12 | str := "123456789" |
| 13 | md5str := GetMd5String(str) |
| 14 | t.Log("GetMd5String:", md5str) |
| 15 | test.Equal(t, "25f9e794323b453885f5181f1b624d0b", md5str) |
| 16 | } |
| 17 | |
| 18 | func Test_GetRandString(t *testing.T) { |
| 19 | randStr := GetRandString(12) |
nothing calls this directly
no test coverage detected