(t *testing.T)
| 92 | } |
| 93 | |
| 94 | func TestMany(t *testing.T) { |
| 95 | for i := 0; i < 100000; i++ { |
| 96 | tkn := NewRandom(TypeDeployment) |
| 97 | str := tkn.String() |
| 98 | _, err := FromString(str) |
| 99 | require.NoError(t, err) |
| 100 | } |
| 101 | } |
| 102 | |
| 103 | func TestPrefix(t *testing.T) { |
| 104 | tkn := NewRandom(TypeUser) |
nothing calls this directly
no test coverage detected