(t *testing.T)
| 16 | NewCompiler().Compiler(script) |
| 17 | } |
| 18 | func TestByte2(t *testing.T) { |
| 19 | script := ` |
| 20 | int[] a={1,2}; |
| 21 | println(a); |
| 22 | ` |
| 23 | NewCompiler().Compiler(script) |
| 24 | } |
| 25 | func TestByte3(t *testing.T) { |
| 26 | script := ` |
| 27 | string s = "10"; |
nothing calls this directly
no test coverage detected