Lines Matching refs:aByte
61 Byte aByte= new Byte((byte) 111); field in AnyConverter_Test
76 anyByte= new Any(new Type(Byte.TYPE), aByte); in AnyConverter_Test()
102 try { AnyConverter.toBoolean(aByte); failed(""); in test_toBoolean()
158 try { AnyConverter.toChar(aByte); failed(""); in test_toChar()
204 byte val= AnyConverter.toByte(aByte); in test_toByte()
205 assure("", val == aByte.byteValue()); in test_toByte()
256 short sh= AnyConverter.toShort(aByte); in test_toShort()
257 assure("", sh == aByte.byteValue()); in test_toShort()
322 int val= AnyConverter.toInt(aByte); in test_toInt()
323 assure("", val == aByte.byteValue()); in test_toInt()
389 long val= AnyConverter.toLong(aByte); in test_toLong()
390 assure("", val == aByte.byteValue()); in test_toLong()
461 float val= AnyConverter.toFloat(aByte); in test_toFloat()
462 assure("", val == aByte.byteValue()); // 111 = 111.0 in test_toFloat()
517 double val= AnyConverter.toDouble(aByte); in test_toDouble()
518 assure("", val == aByte.byteValue()); // 111 = 111.0 in test_toDouble()
644 try { AnyConverter.toString(aByte); failed(""); in test_toString()
700 try { AnyConverter.toType(aByte); failed(""); in test_toType()
756 try { AnyConverter.toType(aByte); failed(""); in test_toArray()
807 assure("", AnyConverter.isByte(aByte)); in test_isByte()