01: /*
02: * Copyright 2001 Sun Microsystems, Inc. All rights reserved.
03: * PROPRIETARY/CONFIDENTIAL. Use of this product is subject to license terms.
04: */
05: package com.sun.portal.rewriter.services.test;
06:
07: import com.sun.portal.rewriter.test.util.BasicTestCase;
08: import junit.framework.Test;
09: import junit.framework.TestSuite;
10:
11: public class TestServicesSuite {
12: public static Test suite() {
13: TestSuite servicesTestSuite = new TestSuite();
14: servicesTestSuite.addTestSuite(TestDataService.class);
15: servicesTestSuite.addTestSuite(TestDataServiceFactory.class);
16: return servicesTestSuite;
17: }//suite()
18:
19: public static void main(String[] args) {
20: BasicTestCase.run(suite());
21: }//main()
22: }//TestServicesSuite
|