01: // Copyright (C) 2003,2004,2005 by Object Mentor, Inc. All rights reserved.
02: // Released under the terms of the GNU General Public License version 2 or later.
03: package fitnesse.wikitext;
04:
05: import junit.framework.Test;
06: import fitnesse.testutil.TestSuiteMaker;
07:
08: public class AllTestSuite {
09: public static Test suite() {
10: return TestSuiteMaker
11: .makeSuite("wikitext", new Class[] {
12: fitnesse.wikitext.widgets.AllTestSuite.class,
13: WidgetBuilderTest.class,
14: WikiTextTranslatorTest.class });
15: }
16: }
|