Lines Matching refs:aBool
59 Boolean aBool= new Boolean(true); field in AnyConverter_Test
74 anyBool= new Any(new Type(Boolean.TYPE), aBool); in AnyConverter_Test()
92 boolean b= AnyConverter.toBoolean(aBool); in test_toBoolean()
93 assure("", b == aBool.booleanValue()); in test_toBoolean()
154 try { AnyConverter.toChar(aBool); failed(""); in test_toChar()
272 try { AnyConverter.toChar(aBool); failed(""); in test_toShort()
280 try { AnyConverter.toShort(aBool); failed(""); in test_toShort()
351 try { AnyConverter.toInt(aBool); failed(""); in test_toInt()
427 try { AnyConverter.toLong(aBool); failed(""); in test_toLong()
479 try { AnyConverter.toFloat(aBool); failed(""); in test_toFloat()
544 try { AnyConverter.toDouble(aBool); failed(""); in test_toDouble()
636 try { AnyConverter.toString(aBool); failed(""); in test_toString()
692 try { AnyConverter.toType(aBool); failed(""); in test_toType()
748 try { AnyConverter.toType(aBool); failed(""); in test_toArray()
795 assure("", AnyConverter.isBoolean(aBool)); in test_isBoolean()
803 assure("", !AnyConverter.isChar(aBool)); in test_isChar()
809 assure("", !AnyConverter.isByte(aBool)); in test_isByte()
820 assure("", !AnyConverter.isShort(aBool)); in test_isShort()
831 assure("", !AnyConverter.isInt(aBool)); in test_isInt()
842 assure("", !AnyConverter.isLong(aBool)); in test_isLong()