Lines Matching refs:anyShort

35     Any anyShort; //  field in AnyConverter_Test
64 anyShort= new Any(new Type(Short.TYPE), aShort); in AnyConverter_Test()
96 try { AnyConverter.toBoolean(anyShort); fail(""); in test_toBoolean()
153 try { AnyConverter.toChar(anyShort); fail(""); in test_toChar()
206 try { AnyConverter.toByte(anyShort); fail(""); in test_toByte()
253 sh= AnyConverter.toShort(anyShort); in test_toShort()
254 assertTrue("", sh == ((Short) anyShort.getObject()).shortValue()); in test_toShort()
261 try { AnyConverter.toUnsignedShort(anyShort); fail(""); in test_toShort()
322 val= AnyConverter.toInt(anyShort); in test_toInt()
323 assertTrue("", val == ((Short) anyShort.getObject()).shortValue()); in test_toInt()
337 try { AnyConverter.toUnsignedInt(anyShort); fail(""); in test_toInt()
392 val= AnyConverter.toLong(anyShort); in test_toLong()
393 assertTrue("", val == ((Short) anyShort.getObject()).shortValue()); in test_toLong()
408 try { AnyConverter.toUnsignedLong(anyShort); fail(""); in test_toLong()
461 val= AnyConverter.toFloat(anyShort); in test_toFloat()
462 assertTrue("", val == ((Short) anyShort.getObject()).shortValue()); in test_toFloat()
518 val= AnyConverter.toDouble(anyShort); in test_toDouble()
519 assertTrue("", val == ((Short) anyShort.getObject()).shortValue()); in test_toDouble()
647 try { AnyConverter.toString(anyShort); fail(""); in test_toString()
704 try { AnyConverter.toType(anyShort); fail(""); in test_toType()
761 try { AnyConverter.toType(anyShort); fail(""); in test_toArray()
817 assertTrue("", AnyConverter.isShort(anyShort)); in test_isShort()
818 assertTrue("", Type.SHORT.equals(AnyConverter.getType(anyShort))); in test_isShort()