KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > db4o > db4ounit > common > soda > AllTests


1 /* Copyright (C) 2004 - 2006 db4objects Inc. http://www.db4o.com
2
3 This file is part of the db4o open source object database.
4
5 db4o is free software; you can redistribute it and/or modify it under
6 the terms of version 2 of the GNU General Public License as published
7 by the Free Software Foundation and as clarified by db4objects' GPL
8 interpretation policy, available at
9 http://www.db4o.com/about/company/legalpolicies/gplinterpretation/
10 Alternatively you can write to db4objects, Inc., 1900 S Norfolk Street,
11 Suite 350, San Mateo, CA 94403, USA.
12
13 db4o is distributed in the hope that it will be useful, but WITHOUT ANY
14 WARRANTY; without even the implied warranty of MERCHANTABILITY or
15 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
16 for more details.
17
18 You should have received a copy of the GNU General Public License along
19 with this program; if not, write to the Free Software Foundation, Inc.,
20 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */

21 package com.db4o.db4ounit.common.soda;
22
23 import com.db4o.db4ounit.common.soda.classes.simple.*;
24 import com.db4o.db4ounit.common.soda.classes.typedhierarchy.*;
25 import com.db4o.db4ounit.common.soda.classes.untypedhierarchy.*;
26 import com.db4o.db4ounit.common.soda.joins.typed.STOrTTestCase;
27 import com.db4o.db4ounit.common.soda.joins.untyped.STOrUTestCase;
28 import com.db4o.db4ounit.common.soda.ordered.*;
29 import com.db4o.db4ounit.common.soda.wrapper.untyped.*;
30
31 import db4ounit.extensions.Db4oTestSuite;
32
33 public class AllTests extends Db4oTestSuite {
34
35     protected Class JavaDoc[] testCases() {
36         return new Class JavaDoc[]{
37                 com.db4o.db4ounit.common.soda.arrays.AllTests.class,
38                 STBooleanTestCase.class,
39                 STBooleanWUTestCase.class,
40                 STByteTestCase.class,
41                 STByteWUTestCase.class,
42                 STCharTestCase.class,
43                 STCharWUTestCase.class,
44                 STDoubleTestCase.class,
45                 STDoubleWUTestCase.class,
46                 STETH1TestCase.class,
47                 STFloatTestCase.class,
48                 STFloatWUTestCase.class,
49                 STIntegerTestCase.class,
50                 STIntegerWUTestCase.class,
51                 STLongTestCase.class,
52                 STLongWUTestCase.class,
53                 STOrTTestCase.class,
54                 STOrUTestCase.class,
55                 STOStringTestCase.class,
56                 STOIntegerTestCase.class,
57                 STOIntegerWTTestCase.class,
58                 STRTH1TestCase.class,
59                 STSDFT1TestCase.class,
60                 STShortTestCase.class,
61                 STShortWUTestCase.class,
62                 STStringUTestCase.class,
63                 STRUH1TestCase.class,
64                 STTH1TestCase.class,
65                 STUH1TestCase.class,
66         };
67     }
68     
69     public static void main(String JavaDoc[] args) {
70         new AllTests().runSolo();
71     }
72
73 }
74
Popular Tags