(t *testing.T)
| 23 | NewCompiler().Compiler(script) |
| 24 | } |
| 25 | func TestByte3(t *testing.T) { |
| 26 | script := ` |
| 27 | string s = "10"; |
| 28 | byte[] a= toByteArray(s); |
| 29 | printf("a=%v ",a); |
| 30 | string s1 = toString(a); |
| 31 | printf("s1=%s",s1); |
| 32 | assertEqual(s1,s); |
| 33 | println(""); |
| 34 | ` |
| 35 | NewCompiler().Compiler(script) |
| 36 | } |
| 37 | func TestStringBuilder(t *testing.T) { |
| 38 | script := ` |
| 39 | StringBuilder b = StringBuilder(); |
nothing calls this directly
no test coverage detected