testThrowsAssertion(engine, "assertEquals(1, 2)", "1 == 2");
}
@Test
public void testAssertEquals_Numbers_python() {
ScriptEngine engine = getScriptEngine();
testWorks(engine, "assertEquals(1, 1)", "1 == 1");
//Python distinguishes between ints and floats, so this
//won't work (even though "1.0 == 1" returns true in pure python)
//testWorks(engine, "assertEquals(1.0, 1)", "1.0 == 1");
testWorks(engine, "assertEquals(1.0, 1.0)", "1.0 == 1.0");