Lines Matching refs:anyByte
34 Any anyByte; // field in AnyConverter_Test
63 anyByte= new Any(new Type(Byte.TYPE), aByte); in AnyConverter_Test()
92 try { AnyConverter.toBoolean(anyByte); fail(""); in test_toBoolean()
149 try { AnyConverter.toChar(anyByte); fail(""); in test_toChar()
196 val= AnyConverter.toByte(anyByte); in test_toByte()
197 assertTrue("", val == ((Byte)anyByte.getObject()).byteValue()); in test_toByte()
251 sh= AnyConverter.toShort(anyByte); in test_toShort()
252 assertTrue("", sh == ((Byte)anyByte.getObject()).byteValue()); in test_toShort()
320 val= AnyConverter.toInt(anyByte); in test_toInt()
321 assertTrue("", val == ((Byte)anyByte.getObject()).byteValue()); in test_toInt()
390 val= AnyConverter.toLong(anyByte); in test_toLong()
391 assertTrue("", val == ((Byte)anyByte.getObject()).byteValue()); in test_toLong()
457 val= AnyConverter.toFloat(anyByte); in test_toFloat()
458 assertTrue("", val == ((Byte)anyByte.getObject()).byteValue()); in test_toFloat()
514 val= AnyConverter.toDouble(anyByte); in test_toDouble()
515 assertTrue("", val == ((Byte)anyByte.getObject()).byteValue()); in test_toDouble()
643 try { AnyConverter.toString(anyByte); fail(""); in test_toString()
700 try { AnyConverter.toType(anyByte); fail(""); in test_toType()
757 try { AnyConverter.toType(anyByte); fail(""); in test_toArray()
810 assertTrue("", AnyConverter.isByte(anyByte)); in test_isByte()