/** Tests the successful setting of the minimum angle. */ @Test public void setMinimum() { AngleJoint aj = new AngleJoint(new Body(), new Body()); aj.setLowerLimit(Math.toRadians(-10)); TestCase.assertEquals(Math.toRadians(-10), aj.getLowerLimit(), 1e-6); }
/** Tests the failed setting of the maximum angle. */ @Test(expected = IllegalArgumentException.class) public void setMinimumFail() { AngleJoint aj = new AngleJoint(new Body(), new Body()); aj.setLowerLimit(Math.toRadians(10)); }