소스 검색

[java] Test some property access too

Cauê Waneck 9 년 전
부모
커밋
6e05965ab4
1개의 변경된 파일3개의 추가작업 그리고 0개의 파일을 삭제
  1. 3 0
      tests/unit/src/unit/issues/Issue3987.hx

+ 3 - 0
tests/unit/src/unit/issues/Issue3987.hx

@@ -5,6 +5,9 @@ class Issue3987 extends Test {
 	public function test() {
 		var int =  java.lang.Integer.valueOf(123);
 		eq(int.intValue(), 123);
+		t(java.lang.Integer.MIN_VALUE < 0);
+		t(java.lang.Integer.MAX_VALUE > 0);
+		eq(java.lang.Integer.SIZE, 32);
 	}
 #end
 }