}
@Test
public void testParamArrowtbarDimNum() throws ParseException {
IPolyline line = (IPolyline)parser.parsePSTCode("\\psline[arrows=<->, tbarsize=1.5cm 3](1,1)").get().getShapeAt(0); //$NON-NLS-1$
assertEquals(1.5*IShape.PPC, line.getTBarSizeDim(), 0.0001);
assertEquals(3., line.getTBarSizeNum(), 0.0001);
assertTrue(PSTParser.errorLogs().isEmpty());
}