Lines Matching refs:anyByte
47 Any anyByte; // field in AnyConverter_Test
76 anyByte= new Any(new Type(Byte.TYPE), aByte); in AnyConverter_Test()
104 try { AnyConverter.toBoolean(anyByte); failed(""); in test_toBoolean()
160 try { AnyConverter.toChar(anyByte); failed(""); in test_toChar()
206 val= AnyConverter.toByte(anyByte); in test_toByte()
207 assure("", val == ((Byte)anyByte.getObject()).byteValue()); in test_toByte()
260 sh= AnyConverter.toShort(anyByte); in test_toShort()
261 assure("", sh == ((Byte)anyByte.getObject()).byteValue()); in test_toShort()
328 val= AnyConverter.toInt(anyByte); in test_toInt()
329 assure("", val == ((Byte)anyByte.getObject()).byteValue()); in test_toInt()
397 val= AnyConverter.toLong(anyByte); in test_toLong()
398 assure("", val == ((Byte)anyByte.getObject()).byteValue()); in test_toLong()
463 val= AnyConverter.toFloat(anyByte); in test_toFloat()
464 assure("", val == ((Byte)anyByte.getObject()).byteValue()); in test_toFloat()
519 val= AnyConverter.toDouble(anyByte); in test_toDouble()
520 assure("", val == ((Byte)anyByte.getObject()).byteValue()); in test_toDouble()
646 try { AnyConverter.toString(anyByte); failed(""); in test_toString()
702 try { AnyConverter.toType(anyByte); failed(""); in test_toType()
758 try { AnyConverter.toType(anyByte); failed(""); in test_toArray()
808 assure("", AnyConverter.isByte(anyByte)); in test_isByte()