* @throws PsInterpreterException4a For PostScript errors.
* @throws PsOperatorException For PostScript operator errors.
*/
@Test
public void testBegin01() throws PsInterpreterException4a, PsOperatorException {
final PsInput input = new PsStringInput("17 dict begin");
final PsInterpreter4a interpreter = new PsInterpreter4a(input, null);
interpreter.process();
assertEquals(0, interpreter.getOperandStack().size());
final PsDictionary dictionary = interpreter.getDictionaryStack().peek();
assertEquals(17, dictionary.maxLength());