(t *testing.T)
| 102 | NewCompiler().Compiler(script) |
| 103 | } |
| 104 | func TestArraySlice2(t *testing.T) { |
| 105 | script := ` |
| 106 | string[] a = {"1","2","3"}; |
| 107 | string s=""; |
| 108 | string[] b = a[1:len(a)]; |
| 109 | println(b); |
| 110 | ` |
| 111 | NewCompiler().Compiler(script) |
| 112 | } |
| 113 | func TestArraySlice3(t *testing.T) { |
| 114 | script := ` |
| 115 | string S = "abcdefx"; |
nothing calls this directly
no test coverage detected