I'm trying to create a test (GWTTestCase) for code that uses e.g. ArrayBuffer or Int32Array from gwtgl, but when running it from eclipse I get an exception and a stack trace.
test method:
public void testArray() {
Int32Array ia = Int32Array.create(new int[] {1, 2, 3});
}
result:
java.lang.RuntimeException: Remote test failed at 10.75.20.160 / Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.0.19) Gecko/2010031422 Firefox/3.0.19
at ...
Caused by: java.lang.Exception: com.google.gwt.core.client.JavaScriptException: (null): null
at com.google.gwt.dev.shell.BrowserChannelServer.invokeJavascript(BrowserChannelServer.java:248)
at ...
Any ideas on how to proceed?