/**
* Test a Double
*/
public void testDoubleObject() throws Exception
{
ValueExp one = Query.value(new Double(10d));
ValueExp two = Query.value(new Double(20d));
ValueExp div = Query.value(new Double(2d));
ValueExp minus = Query.value(new Double(-10d));
ValueExp mult = Query.value(new Double(200d));
ValueExp plus = Query.value(new Double(30d));
equalsTEST(one, two);
operationTEST(one, two, div, minus, mult, plus);
comparisonTEST(one, two);
betweenTEST(one, two, plus);
attrTEST(new NumberTest(new Double(10d)), Query.attr("Number"), one, two);