(b *testing.B)
| 268 | } |
| 269 | |
| 270 | func BenchmarkFromString(b *testing.B) { |
| 271 | b.RunParallel(func(pb *testing.PB) { |
| 272 | for pb.Next() { |
| 273 | _, _ = FromString("9m4e2mr0ui3e8a215n4g") |
| 274 | } |
| 275 | }) |
| 276 | } |
| 277 | |
| 278 | func TestFromStringQuick(t *testing.T) { |
| 279 | f := func(id1 ID, c byte) bool { |
nothing calls this directly
no test coverage detected
searching dependent graphs…