Package info.bliki.wiki.test.filter

Examples of info.bliki.wiki.test.filter.WikiTestModel


  public static Test suite() {
    return new TestSuite(BigDocbookTest.class);
  }

  public void testDocbook() {
    WikiModel myWikiModel = new WikiTestModel("file:///c:/temp/${image}", "file:///c:/temp/${title}");
    String renderedXHTML = myWikiModel.render(TEST1);
    DocbookGenerator gen = new DocbookGenerator();
    try {
      String output = gen.create(renderedXHTML, DocbookGenerator.HEADER_TEMPLATE, DocbookGenerator.FOOTER, "Big Docbook Test");
      System.out.println(output);
    } catch (Exception e) {
View Full Code Here

TOP

Related Classes of info.bliki.wiki.test.filter.WikiTestModel

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.