Lines Matching refs:aBool
46 Boolean aBool= new Boolean(true); field in AnyConverter_Test
61 anyBool= new Any(new Type(Boolean.TYPE), aBool); in AnyConverter_Test()
80 boolean b= AnyConverter.toBoolean(aBool); in test_toBoolean()
81 assertTrue("", b == aBool.booleanValue()); in test_toBoolean()
143 try { AnyConverter.toChar(aBool); fail(""); in test_toChar()
263 try { AnyConverter.toChar(aBool); fail(""); in test_toShort()
271 try { AnyConverter.toShort(aBool); fail(""); in test_toShort()
343 try { AnyConverter.toInt(aBool); fail(""); in test_toInt()
420 try { AnyConverter.toLong(aBool); fail(""); in test_toLong()
473 try { AnyConverter.toFloat(aBool); fail(""); in test_toFloat()
539 try { AnyConverter.toDouble(aBool); fail(""); in test_toDouble()
633 try { AnyConverter.toString(aBool); fail(""); in test_toString()
690 try { AnyConverter.toType(aBool); fail(""); in test_toType()
747 try { AnyConverter.toType(aBool); fail(""); in test_toArray()
795 assertTrue("", AnyConverter.isBoolean(aBool)); in test_isBoolean()
804 assertTrue("", !AnyConverter.isChar(aBool)); in test_isChar()
811 assertTrue("", !AnyConverter.isByte(aBool)); in test_isByte()
823 assertTrue("", !AnyConverter.isShort(aBool)); in test_isShort()
835 assertTrue("", !AnyConverter.isInt(aBool)); in test_isInt()
847 assertTrue("", !AnyConverter.isLong(aBool)); in test_isLong()