Lines Matching refs:anyStr
40 Any anyStr; // field in AnyConverter_Test
69 anyStr= new Any(new Type(String.class), aStr); in AnyConverter_Test()
118 try { AnyConverter.toBoolean(anyStr); fail(""); in test_toBoolean()
175 try { AnyConverter.toChar(anyStr); fail(""); in test_toChar()
228 try { AnyConverter.toByte(anyStr); fail(""); in test_toByte()
295 try { AnyConverter.toShort(anyStr); fail(""); in test_toShort()
363 try { AnyConverter.toInt(anyStr); fail(""); in test_toInt()
436 try { AnyConverter.toLong(anyStr); fail(""); in test_toLong()
493 try { AnyConverter.toFloat(anyStr); fail(""); in test_toFloat()
551 try { AnyConverter.toDouble(anyStr); fail(""); in test_toDouble()
629 val= AnyConverter.toString(anyStr); in test_toString()
630 assertTrue("", ((String)anyStr.getObject()).equals(val)); in test_toString()
726 try { AnyConverter.toType(anyStr); fail(""); in test_toType()
783 try { AnyConverter.toType(anyStr); fail(""); in test_toArray()
874 assertTrue("", AnyConverter.isString(anyStr)); in test_isString()