| 1 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 [] testCases() { 36 return new Class []{ 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 [] args) { 70 new AllTests().runSolo(); 71 } 72 73 } 74 | Popular Tags |