}
@Test
public void test2CoordinatesFloatSigns() throws ParseException {
IEllipse ell = (IEllipse)parser.parsePSTCode("\\"+getCommandName()+"(-+-.5,+--.5)(+++35.5,--50.5)").get().getShapeAt(0); //$NON-NLS-1$ //$NON-NLS-2$
assertEquals(.5*IShape.PPC-35.5*IShape.PPC, ell.getPosition().getX(), 0.001);
assertEquals(.5*-IShape.PPC+50.5*IShape.PPC, ell.getPosition().getY(), 0.001);
assertEquals(35.5*IShape.PPC*2., ell.getWidth(), 0.001);
assertEquals(50.5*IShape.PPC*2., ell.getHeight(), 0.001);
assertTrue(PSTParser.errorLogs().isEmpty());
}