Lines Matching refs:arByte
70 byte[] arByte= new byte[] {1,2,3}; field in AnyConverter_Test
84 anyArByte= new Any(new Type(byte[].class), arByte); in AnyConverter_Test()
138 try { AnyConverter.toBoolean(arByte); failed(""); in test_toBoolean()
194 try { AnyConverter.toChar(arByte); failed(""); in test_toChar()
246 try { AnyConverter.toByte(arByte); failed(""); in test_toByte()
312 try { AnyConverter.toShort(arByte); failed(""); in test_toShort()
379 try { AnyConverter.toInt(arByte); failed(""); in test_toInt()
451 try { AnyConverter.toLong(arByte); failed(""); in test_toLong()
507 try { AnyConverter.toFloat(arByte); failed(""); in test_toFloat()
564 try { AnyConverter.toDouble(arByte); failed(""); in test_toDouble()
676 try { AnyConverter.toString(arByte); failed(""); in test_toString()
732 try { AnyConverter.toType(arByte); failed(""); in test_toType()
742 Object val= AnyConverter.toArray(arByte); in test_toArray()
743 assure("", val == arByte); in test_toArray()
788 try { AnyConverter.toType(arByte); failed(""); in test_toArray()
876 assure("", AnyConverter.isArray(arByte)); in test_isArray()