JS backend: tests for Long type support

This commit is contained in:
Michael Nedzelsky
2014-09-23 19:02:33 +04:00
parent dca6e31519
commit 2e4e5c5d1d
14 changed files with 351 additions and 6 deletions
@@ -85,4 +85,28 @@ public final class NumberTest extends SingleFileTranslationTest {
public void testConversionsWithTruncation() throws Exception {
checkFooBoxIsOk();
}
public void testLongEqualsIntrinsic() throws Exception {
checkFooBoxIsOk();
}
public void testLongArray() throws Exception {
checkFooBoxIsOk();
}
public void testLongCompareToIntrinsic() throws Exception {
checkFooBoxIsOk();
}
public void testLongBinaryOperations() throws Exception {
checkFooBoxIsOk();
}
public void testLongUnaryOperations() throws Exception {
checkFooBoxIsOk();
}
public void testLongBitOperations() throws Exception {
checkFooBoxIsOk();
}
}