Lines Matching refs:anyInt
36 Any anyInt; // field in AnyConverter_Test
65 anyInt= new Any(new Type(Integer.TYPE), aInt); in AnyConverter_Test()
100 try { AnyConverter.toBoolean(anyInt); fail(""); in test_toBoolean()
157 try { AnyConverter.toChar(anyInt); fail(""); in test_toChar()
210 try { AnyConverter.toByte(anyInt); fail(""); in test_toByte()
277 try { AnyConverter.toShort(anyInt); fail(""); in test_toShort()
324 val= AnyConverter.toInt(anyInt); in test_toInt()
325 assertTrue("", val == ((Integer) anyInt.getObject()).intValue()); in test_toInt()
333 try { AnyConverter.toUnsignedInt(anyInt); fail(""); in test_toInt()
394 val= AnyConverter.toLong(anyInt); in test_toLong()
395 assertTrue("", val == ((Integer) anyInt.getObject()).intValue()); in test_toLong()
410 try { AnyConverter.toUnsignedLong(anyInt); fail(""); in test_toLong()
479 try { AnyConverter.toFloat(anyInt); fail(""); in test_toFloat()
522 val= AnyConverter.toDouble(anyInt); in test_toDouble()
523 assertTrue("", val == ((Integer) anyInt.getObject()).intValue()); in test_toDouble()
651 try { AnyConverter.toString(anyInt); fail(""); in test_toString()
708 try { AnyConverter.toType(anyInt); fail(""); in test_toType()
765 try { AnyConverter.toType(anyInt); fail(""); in test_toArray()
829 assertTrue("", AnyConverter.isInt(anyInt)); in test_isInt()
830 assertTrue("", Type.LONG.equals(AnyConverter.getType(anyInt))); in test_isInt()