Lines Matching refs:anyDouble
39 Any anyDouble; // field in AnyConverter_Test
68 anyDouble= new Any(new Type(Double.TYPE), aDouble); in AnyConverter_Test()
112 try { AnyConverter.toBoolean(anyDouble); fail(""); in test_toBoolean()
169 try { AnyConverter.toChar(anyDouble); fail(""); in test_toChar()
222 try { AnyConverter.toByte(anyDouble); fail(""); in test_toByte()
289 try { AnyConverter.toShort(anyDouble); fail(""); in test_toShort()
357 try { AnyConverter.toInt(anyDouble); fail(""); in test_toInt()
430 try { AnyConverter.toLong(anyDouble); fail(""); in test_toLong()
487 try { AnyConverter.toFloat(anyDouble); fail(""); in test_toFloat()
531 val= AnyConverter.toDouble(anyDouble); in test_toDouble()
532 assertTrue("", val == ((Double) anyDouble.getObject()).doubleValue()); in test_toDouble()
663 try { AnyConverter.toString(anyDouble); fail(""); in test_toString()
720 try { AnyConverter.toType(anyDouble); fail(""); in test_toType()
777 try { AnyConverter.toType(anyDouble); fail(""); in test_toArray()
860 assertTrue("", AnyConverter.isDouble(anyDouble)); in test_isDouble()