01: // You can redistribute this software and/or modify it under the terms of
02: // the Ozone Library License version 1 published by ozone-db.org.
03: //
04: // The original code and portions created by DigitalSeame are
05: // Copyright (C) 1997-2000 by DigitalSesame All rights reserved.
06: //
07: // $Id: OzoneTestSuiteLoader.java,v 1.1 2001/12/18 10:31:31 per_nyfelt Exp $
08:
09: package org.ozoneDB.test;
10:
11: import junit.runner.TestSuiteLoader;
12:
13: /**
14: * <p>This is a TestSuiteLoader for Ozone's database.
15: *
16: * <p>The problem with standard JUnit is that it create new
17: * classloader for each test suite. This does not work well with
18: * Ozone. It case a lot of confusion in determining the equivlance of
19: * object.
20: *
21: * @author <a href="http://www.softwarebuero.de/">SMB</a>
22: * @author <a href="mailto:david@d11e.com">David Li</a>
23: * @version $Revision: 1.1 $Date: 2001/12/18 10:31:31 $
24: */
25: class OzoneTestSuiteLoader implements TestSuiteLoader {
26:
27: private ClassLoader fClassLoader = null;
28:
29: protected OzoneTestSuiteLoader() {
30: fClassLoader = OzoneTestSuiteLoader.class.getClassLoader();
31: }
32:
33: public Class load(String suiteClassName)
34: throws ClassNotFoundException {
35: return fClassLoader.loadClass(suiteClassName);
36: }
37:
38: public Class reload(Class aClass) throws ClassNotFoundException {
39: return aClass;
40: }
41: }
|