@Test
public void testDoubleRputRotationMustNotRotateOtherShapes() throws ParseException {
IGroup gp = parser.parsePSTCode("\\rput{10}(0,0){\\rput{80}(0,0){coucou}}\\psframe(10,10)").get(); //$NON-NLS-1$
IText txt = (IText)gp.getShapeAt(0);
IRectangle rec = (IRectangle)gp.getShapeAt(1);
assertTrue(PSTParser.errorLogs().isEmpty());
assertEquals(Math.toRadians(-90), txt.getRotationAngle(), 0.001);
assertEquals(0., rec.getRotationAngle(), 0.001);
}