Lines Matching refs:aShort
62 Short aShort= new Short((short) 11111); field in AnyConverter_Test
77 anyShort= new Any(new Type(Short.TYPE), aShort); in AnyConverter_Test()
106 try { AnyConverter.toBoolean(aShort); failed(""); in test_toBoolean()
162 try { AnyConverter.toChar(aShort); failed(""); in test_toChar()
214 try { AnyConverter.toByte(aShort); failed(""); in test_toByte()
258 sh= AnyConverter.toShort(aShort); in test_toShort()
259 assure("", sh == aShort.shortValue()); in test_toShort()
324 val= AnyConverter.toInt(aShort); in test_toInt()
325 assure("", val == aShort.shortValue()); in test_toInt()
391 val= AnyConverter.toLong(aShort); in test_toLong()
392 assure("", val == aShort.shortValue()); in test_toLong()
465 val= AnyConverter.toFloat(aShort); in test_toFloat()
466 assure("", val == aShort.shortValue()); //11111 = 11111.0 in test_toFloat()
521 val= AnyConverter.toDouble(aShort); in test_toDouble()
522 assure("", val == aShort.shortValue()); //11111 = 11111.0 in test_toDouble()
648 try { AnyConverter.toString(aShort); failed(""); in test_toString()
704 try { AnyConverter.toType(aShort); failed(""); in test_toType()
760 try { AnyConverter.toType(aShort); failed(""); in test_toArray()
813 assure("", AnyConverter.isShort(aShort)); in test_isShort()