Lines Matching refs:anyArByte
42 Any anyArByte; // field in AnyConverter_Test
71 anyArByte= new Any(new Type(byte[].class), arByte); in AnyConverter_Test()
128 try { AnyConverter.toBoolean(anyArByte); fail(""); in test_toBoolean()
185 try { AnyConverter.toChar(anyArByte); fail(""); in test_toChar()
238 try { AnyConverter.toByte(anyArByte); fail(""); in test_toByte()
305 try { AnyConverter.toShort(anyArByte); fail(""); in test_toShort()
373 try { AnyConverter.toInt(anyArByte); fail(""); in test_toInt()
446 try { AnyConverter.toLong(anyArByte); fail(""); in test_toLong()
503 try { AnyConverter.toFloat(anyArByte); fail(""); in test_toFloat()
561 try { AnyConverter.toDouble(anyArByte); fail(""); in test_toDouble()
675 try { AnyConverter.toString(anyArByte); fail(""); in test_toString()
732 try { AnyConverter.toType(anyArByte); fail(""); in test_toType()
743 val= AnyConverter.toArray(anyArByte); in test_toArray()
744 assertTrue("", val == anyArByte.getObject()); in test_toArray()
789 try { AnyConverter.toType(anyArByte); fail(""); in test_toArray()
888 assertTrue("", AnyConverter.isArray(anyArByte)); in test_isArray()