01: /*
02: * (C) Janne Jalkanen 2005
03: *
04: */
05: package com.ecyrd.jspwiki.parser;
06:
07: import junit.framework.Test;
08: import junit.framework.TestCase;
09: import junit.framework.TestSuite;
10:
11: public class AllTests extends TestCase {
12: public AllTests(String s) {
13: super (s);
14: }
15:
16: public static Test suite() {
17: TestSuite suite = new TestSuite("Parser tests");
18:
19: suite.addTest(JSPWikiMarkupParserTest.suite());
20: suite.addTest(MarkupParserTest.suite());
21: suite.addTest(CreoleToJSPWikiTranslatorTest.suite());
22: return suite;
23: }
24: }
|