Package dtool.sourcegen.TemplatedSourceProcessor

Examples of dtool.sourcegen.TemplatedSourceProcessor.TemplatedSourceProcessingException


    try {
      TemplatedSourceProcessor tsp = new TemplatedSourceProcessor();
      tsp.processSource(marker, source);
      assertFail();
    } catch(TemplatedSourceException tse) {
      TemplatedSourceProcessingException tspe = assertCast(tse, TemplatedSourceProcessingException.class);
      assertEquals(tspe.errorString, errorType);
      assertEquals(tspe.errorObject.toString(), errorObject);
    }
  }
View Full Code Here

TOP

Related Classes of dtool.sourcegen.TemplatedSourceProcessor.TemplatedSourceProcessingException

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.