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 // This file is 5 // Copyright (C) 2003-@year@ Per Nyfelt. All rights reserved. 6 // 7 package test.ozoneDB.DxLib; 8 9 import junit.framework.Test; 10 import junit.framework.TestSuite; 11 12 /** 13 * @author Per Nyfelt 14 */ 15 public class AllTestSuite { 16 public static Test suite() { 17 TestSuite suite = new TestSuite(); 18 suite.addTestSuite(test.ozoneDB.DxLib.CollectionTest.class); 19 suite.addTestSuite(test.ozoneDB.DxLib.DiskHashTest.class); 20 suite.addTestSuite(test.ozoneDB.DxLib.MapTest.class); 21 suite.addTestSuite(test.ozoneDB.DxLib.SetTest.class); 22 return suite; 23 } 24 } 25