| 1 21 package com.db4o.db4ounit.jre11.soda; 22 23 import com.db4o.db4ounit.jre11.soda.classes.simple.STDateTestCase; 24 import com.db4o.db4ounit.jre11.soda.wrapper.typed.*; 25 import com.db4o.db4ounit.jre11.soda.wrapper.untyped.STDateUTestCase; 26 27 import db4ounit.extensions.Db4oTestSuite; 28 29 30 public class AllTests extends Db4oTestSuite { 31 32 protected Class [] testCases() { 33 return new Class [] { 34 STBooleanWTTestCase.class, 35 STByteWTTestCase.class, 36 STCharWTTestCase.class, 37 STDateTestCase.class, 38 STDateUTestCase.class, 39 STDoubleWTTestCase.class, 40 STFloatWTTestCase.class, 41 STIntegerWTTestCase.class, 42 STLongWTTestCase.class, 43 STShortWTTestCase.class, 44 }; 45 } 46 47 } 48 | Popular Tags |