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