01: /*
02: * (C) Janne Jalkanen 2005
03: *
04: */
05: package com.ecyrd.jspwiki.diff;
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 static Test suite() {
13: TestSuite suite = new TestSuite("DIFF tests");
14:
15: suite.addTest(ContextualDiffProviderTest.suite());
16:
17: return suite;
18: }
19: }
|