assertEquals(1, PSTParser.errorLogs().size());
}
@Test public void testPsplot() throws ParseException {
final IPlot plot = (IPlot)parser.parsePSTCode("\\psplot{0}{720}{x sin}").get().getShapeAt(0); //$NON-NLS-1$
assertTrue(PSTParser.errorLogs().isEmpty());
assertEquals(0.0, plot.getPlotMinX(), 0.0);
assertEquals(720.0, plot.getPlotMaxX(), 0.0);
assertEquals("x sin", plot.getPlotEquation()); //$NON-NLS-1$
}