KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > openedit > repository > AllTests


1 /*
2  * Created on Jan 4, 2005
3  */

4 package org.openedit.repository;
5
6 import junit.framework.Test;
7 import junit.framework.TestSuite;
8
9 import org.openedit.repository.filesystem.BaseRepositoryTest;
10
11
12 /**
13  * @author cburkey
14  *
15  */

16 public class AllTests
17 {
18
19     public static Test suite()
20     {
21         TestSuite suite = new TestSuite("Test for com.einnovation.repository");
22         //$JUnit-BEGIN$
23
suite.addTest(new TestSuite(CompoundRepositoryTest.class));
24         suite.addTest(new TestSuite(BaseRepositoryTest.class));
25         //$JUnit-END$
26
return suite;
27     }
28 }
29
Popular Tags