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 SMB are
05: // Copyright (C) 1997-2000 by SMB GmbH. All rights reserved.
06: //
07: // $Id: LockTest.java,v 1.1 2001/12/18 10:31:31 per_nyfelt Exp $
08:
09: package org.ozoneDB.test.tx;
10:
11: import org.ozoneDB.*;
12: import org.ozoneDB.DxLib.*;
13: import org.ozoneDB.test.*;
14: import junit.framework.*;
15:
16: /**
17: * TestCase and command line driver for the tests of this package.
18: *
19: *
20: * @author <a href="http://www.softwarebuero.de/">SMB</a>
21: * @version $Revision: 1.1 $Date: 2001/12/18 10:31:31 $
22: */
23: public class LockTest extends OzoneTestCase {
24:
25: public static Test suite() {
26: TestSuite suite = new TestSuite();
27: suite.addTestSuite(LockTest.class);
28: return suite;
29: }
30:
31: public LockTest(String name) {
32: super (name);
33: }
34:
35: public void testAll() throws Exception {
36: }
37:
38: public void testLocks() throws Exception {
39: }
40:
41: public void testDeadlock() throws Exception {
42: }
43:
44: }
|