(t *testing.T)
| 74 | NewCompiler().Compiler(script) |
| 75 | } |
| 76 | func TestStringBuilder5(t *testing.T) { |
| 77 | script := ` |
| 78 | StringBuilder sb = StringBuilder(); |
| 79 | sb.grow(15); |
| 80 | ` |
| 81 | NewCompiler().Compiler(script) |
| 82 | } |
| 83 | func TestStringBuilder6(t *testing.T) { |
| 84 | script := ` |
| 85 | Strings s = Strings(); |
nothing calls this directly
no test coverage detected