(t *testing.T)
| 23 | ) |
| 24 | |
| 25 | func TestRandomString(t *testing.T) { |
| 26 | first := util.RandomString(256, util.UpperLetter|util.LowerLetter|util.Numeric) |
| 27 | second := util.RandomString(256, util.UpperLetter|util.LowerLetter|util.Numeric) |
| 28 | require.NotEqual(t, first, second) |
| 29 | } |
| 30 | |
| 31 | func TestSubStr(t *testing.T) { |
| 32 | str := "abcd" |
nothing calls this directly
no test coverage detected