Lines Matching refs:anyBool
32 Any anyBool; // field in AnyConverter_Test
61 anyBool= new Any(new Type(Boolean.TYPE), aBool); in AnyConverter_Test()
82 b= AnyConverter.toBoolean(anyBool); in test_toBoolean()
83 assertTrue("", b == ((Boolean)anyBool.getObject()).booleanValue()); in test_toBoolean()
145 try { AnyConverter.toChar(anyBool); fail(""); in test_toChar()
265 try { AnyConverter.toChar(anyBool); fail(""); in test_toShort()
273 try { AnyConverter.toShort(anyBool); fail(""); in test_toShort()
345 try { AnyConverter.toInt(anyBool); fail(""); in test_toInt()
422 try { AnyConverter.toLong(anyBool); fail(""); in test_toLong()
475 try { AnyConverter.toFloat(anyBool); fail(""); in test_toFloat()
541 try { AnyConverter.toDouble(anyBool); fail(""); in test_toDouble()
635 try { AnyConverter.toString(anyBool); fail(""); in test_toString()
692 try { AnyConverter.toType(anyBool); fail(""); in test_toType()
749 try { AnyConverter.toType(anyBool); fail(""); in test_toArray()
796 assertTrue("", AnyConverter.isBoolean(anyBool)); in test_isBoolean()