testExp4 = new LiteralExpressionImpl(new Integer(4));
testMath2.setExpression1(testExp3);
assertTrue(!testMath1.equals(testMath2));
testMath1.setExpression1(testExp4);
assertTrue(testMath1.equals(testMath2));
testMath1 = new SubtractImpl(null,null);
testMath1.setExpression1(testExp4);
testMath1.setExpression1(testExp2);
assertTrue(!testMath1.equals(testMath2));
assertTrue(!testMath1.equals("Random Object that happens to be a string"));
} catch (IllegalFilterException e){