(b *testing.B)
| 627 | } |
| 628 | |
| 629 | func BenchmarkToUTF8String(b *testing.B) { |
| 630 | var s String = asciiString("test") |
| 631 | for i := 0; i < b.N; i++ { |
| 632 | _ = s.String() |
| 633 | } |
| 634 | } |
| 635 | |
| 636 | func BenchmarkAdd(b *testing.B) { |
| 637 | var x, y Value |
nothing calls this directly
no test coverage detected
searching dependent graphs…