mirror of
https://github.com/Eaglercraft-TeaVM-Fork/eagler-teavm.git
synced 2024-12-22 08:14:09 -08:00
Adds test of array conversion while passing to the JavaScriptBody
This commit is contained in:
parent
119de7ab82
commit
75a7b213e0
|
@ -34,9 +34,28 @@ public class JavaScriptBodyConversionTests {
|
|||
assertEquals(23, returnAsObject(23));
|
||||
}
|
||||
|
||||
@Test
|
||||
public void convertsArray() {
|
||||
assertEquals(42, getArrayItem(new Integer[] { 23, 42 }, 1));
|
||||
}
|
||||
|
||||
@Test
|
||||
public void copiesArray() {
|
||||
Integer[] array = { 23, 42 };
|
||||
Integer[] arrayCopy = (Integer[])modifyIntegerArray(array);
|
||||
assertEquals(Integer.valueOf(23), array[0]);
|
||||
assertEquals(Integer.valueOf(1), arrayCopy[0]);
|
||||
}
|
||||
|
||||
@JavaScriptBody(args = { "value" }, body = "return value;")
|
||||
private native int returnAsInt(Object value);
|
||||
|
||||
@JavaScriptBody(args = { "value" }, body = "return value;")
|
||||
private native Object returnAsObject(int value);
|
||||
|
||||
@JavaScriptBody(args = { "value" }, body = "value[0] = 1; return value;")
|
||||
private native Object modifyIntegerArray(Object value);
|
||||
|
||||
@JavaScriptBody(args = { "array", "index" }, body = "return array[index];")
|
||||
private native Object getArrayItem(Object array, int index);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue
Block a user