01: /*
02: *
03: * Copyright 1999
04: * Dade Behring, Inc
05: *
06: * This code was developed
07: * for the DBNet project.
08: * All rights reserved.
09: *
10: */
11: package com.dbnet.common.view.report;
12:
13: import test.framework.*;
14:
15: /**
16: * Tests the objects in com.dbnet.admin.contents
17: *
18: *@author Chris Seguin
19: *@date February 3, 1999
20: */
21: public class PackageTest {
22: /**
23: * Runs all the tests
24: *
25: *@return the suite
26: */
27: public static Test suite() {
28: TestSuite suite = new TestSuite();
29:
30: suite.addTest(new TestPageInfo("testInitial"));
31: suite.addTest(new TestPageInfo("testNull"));
32: suite.addTest(new TestPageInfo("testChange"));
33:
34: return suite;
35: }
36:
37: /**
38: * Run the test suite to the command line
39: *
40: *@param args Description of Parameter
41: */
42: public static void main(String args[]) {
43: test.textui.TestRunner.run(suite());
44: }
45: }
|