return "com.google.gwt.typedarrays.TypedArrays";
}
public void testSetAndGetLong() {
long[] array = new long[] {0, 1, 2, 3, 4294967295L, 4294967294L, 4294967293L, 4294967292L};
JsArrayInteger jsArray = JsArrayInteger.createArray().cast();
for (int i = 0; i < array.length; i++) {
JsArrayUtil.setLongToJsArrayInteger(jsArray, i, array[i]);
}