1
2
3
4
5
6
7
8
9 package ca.uhn.cache.junit;
10
11 import junit.framework.TestCase;
12
13
14 /***
15 * Base class for all the standard cache test cases.
16 *
17 * @author <a href="mailto:alexei.guevara@uhn.on.ca">Alexei Guevara</a>
18 * @version $Revision: 1.1 $ updated on $Date: 2005/01/24 22:53:19 $ by $Author: bryan_tripp $
19 */
20 public abstract class CacheTestCase extends TestCase {
21
22
23 static {
24 ClassLoader.getSystemClassLoader().setPackageAssertionStatus( "ca.uhn.cache", true );
25 }
26
27 /***
28 */
29 public CacheTestCase() {
30 }
31
32 /***
33 * @param theName The name of the test case.
34 */
35 public CacheTestCase( String theName ) {
36 super( theName );
37 }
38
39 }