1   /*
2    * Copyright (c) 2004-2005, University Health Network.  All rights reserved. Distributed under the BSD 
3    * license (see http://opensource.org/licenses/bsd-license.php).
4    *  
5    * CacheTestCase.java
6    *
7    * Created on 20-Jan-2005 at 10:58:16 AM
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      //enable assertions
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  }