KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > test > AllTestSuite


1 // You can redistribute this software and/or modify it under the terms of
2
// the Ozone Library License version 1 published by ozone-db.org.
3
//
4
// The original code and portions created by SMB are
5
// Copyright (C) 1997-2000 by SMB GmbH. All rights reserved.
6
//
7
// $Id$
8

9 package test;
10
11 import junit.framework.Test;
12 import junit.framework.TestSuite;
13
14 /**
15  * This TestSuite covers all the Unitest in this directory.
16  *
17  * @author <a HREF="mailto:david@d11e.com">David Li</a>
18  * @author Per Nyfelt
19  * @version $Revision$Date$
20  */

21 public class AllTestSuite {
22
23     public static Test suite() {
24         TestSuite suite = new TestSuite();
25         suite.addTestSuite(test.args.ArgsTest.class);
26         suite.addTestSuite(test.simple.SimpleTest.class);
27         suite.addTestSuite(test.tx.TxTest.class);
28         suite.addTestSuite(test.deadlocks.DeadlockTest.class);
29         suite.addTestSuite(test.multiple_access.MultipleAccessTest.class);
30         suite.addTest(test.ozoneDB.DxLib.AllTestSuite.suite());
31         return suite;
32     }
33 }
34
Popular Tags