01: /*
02: * $URL: All.java $
03: * $Rev: 3582 $
04: * $Date: 2007-11-25 14:29:06 +0300 (Ð’Ñ?, 25 ноÑ? 2007) $
05: *
06: * Copyright 2005 Netup, Inc. All rights reserved.
07: * URL: http://www.netup.biz
08: * e-mail: info@netup.biz
09: */
10:
11: package org.garret.perst;
12:
13: import junit.framework.*;
14: import org.garret.perst.*;
15:
16: /**
17: * <p>
18: * Collect all the PERST tests into one suite.
19: * </p>
20: */
21: public class All extends TestCase {
22:
23: public All(String testName) {
24: super (testName);
25: }
26:
27: public static junit.framework.Test suite() {
28: junit.framework.TestSuite suite = new junit.framework.TestSuite(
29: "All");
30: suite.addTest(org.garret.perst.BlobTest.suite());
31: suite.addTest(org.garret.perst.DatabaseTest.suite());
32: suite.addTest(org.garret.perst.PersistentSetTest.suite());
33: suite.addTest(org.garret.perst.QueryTest.suite());
34: suite.addTest(org.garret.perst.StorageFactoryTest.suite());
35: suite.addTest(org.garret.perst.StorageTest.suite());
36: suite.addTest(org.garret.perst.StorageTestThreaded.suite());
37: return suite;
38: }
39:
40: }
|