01: package com.sun.portal.wireless.providers.containers;
02:
03: import junit.framework.*;
04:
05: /**
06: * $Id: TestSuiteDesktop.java,v 1.1 2004/04/14 19:23:15 gregz Exp $
07: * Copyright 2003 Sun Microsystems, Inc. All
08: * rights reserved. Use of this product is subject
09: * to license terms. Federal Acquisitions:
10: * Commercial Software -- Government Users
11: * Subject to Standard License Terms and
12: * Conditions.
13: *
14: * Sun, Sun Microsystems, the Sun logo, and Sun ONE
15: * are trademarks or registered trademarks of Sun Microsystems,
16: * Inc. in the United States and other countries.
17: */
18: public class TestSuiteDesktop {
19: public static void main(String[] argv) {
20: junit.textui.TestRunner.run(suite());
21: }
22:
23: public static Test suite() {
24: TestSuite suite = new TestSuite();
25: suite
26: .addTestSuite(com.sun.portal.wireless.providers.containers.jsp.list.TestJSPNativeContainerProvider.class);
27: suite
28: .addTestSuite(com.sun.portal.wireless.providers.containers.jsp.rendering.TestJSPRenderingContainerProvider.class);
29:
30: return (suite);
31: }
32:
33: }
|