01: /*
02: * The contents of this file are subject to the terms
03: * of the Common Development and Distribution License
04: * (the "License"). You may not use this file except
05: * in compliance with the License.
06: *
07: * You can obtain a copy of the license at
08: * https://jwsdp.dev.java.net/CDDLv1.0.html
09: * See the License for the specific language governing
10: * permissions and limitations under the License.
11: *
12: * When distributing Covered Code, include this CDDL
13: * HEADER in each file and include the License file at
14: * https://jwsdp.dev.java.net/CDDLv1.0.html If applicable,
15: * add the following below this CDDL HEADER, with the
16: * fields enclosed by brackets "[]" replaced with your
17: * own identifying information: Portions Copyright [yyyy]
18: * [name of copyright owner]
19: */
20: /*
21: * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
22: *
23: * Copyright 1997-2007 Sun Microsystems, Inc. All rights reserved.
24: *
25: * The contents of this file are subject to the terms of either the GNU
26: * General Public License Version 2 only ("GPL") or the Common Development
27: * and Distribution License("CDDL") (collectively, the "License"). You
28: * may not use this file except in compliance with the License. You can obtain
29: * a copy of the License at https://glassfish.dev.java.net/public/CDDL+GPL.html
30: * or glassfish/bootstrap/legal/LICENSE.txt. See the License for the specific
31: * language governing permissions and limitations under the License.
32: *
33: * When distributing the software, include this License Header Notice in each
34: * file and include the License file at glassfish/bootstrap/legal/LICENSE.txt.
35: * Sun designates this particular file as subject to the "Classpath" exception
36: * as provided by Sun in the GPL Version 2 section of the License file that
37: * accompanied this code. If applicable, add the following below the License
38: * Header, with the fields enclosed by brackets [] replaced by your own
39: * identifying information: "Portions Copyrighted [year]
40: * [name of copyright owner]"
41: *
42: * Contributor(s):
43: *
44: * If you wish your version of this file to be governed by only the CDDL or
45: * only the GPL Version 2, indicate your decision by adding "[Contributor]
46: * elects to include this software in this distribution under the [CDDL or GPL
47: * Version 2] license." If you don't indicate a single choice of license, a
48: * recipient has the option to distribute your version of this file under
49: * either the CDDL, the GPL Version 2 or to extend the choice of license to
50: * its licensees as provided above. However, if you add GPL Version 2 code
51: * and therefore, elected the GPL Version 2 license, then the option applies
52: * only if the new code is made subject to such option by the copyright
53: * holder.
54: */
55:
56: /**
57: * $Id: AllTests.java,v 1.2 2007/07/16 16:41:27 ofung Exp $
58: */package mime;
59:
60: import junit.framework.*;
61:
62: /**
63: * Test suite to reproduce Krishna's golden test.
64: *
65: * @author Manveen Kaur (manveen.kaur@sun.com)
66: *
67: */
68: public class AllTests extends TestCase {
69:
70: public AllTests(String name) {
71: super (name);
72: }
73:
74: public static Test suite() {
75: TestSuite suite = new TestSuite();
76:
77: suite.addTestSuite(AttachMultipartTest.class);
78: suite.addTestSuite(AttachImageTest.class);
79: suite.addTestSuite(AttachPngImageTest.class);
80: suite.addTestSuite(StartParameterTest.class);
81: suite.addTestSuite(CharacterSetEncodingTest.class);
82: suite.addTestSuite(XmlAttachmentTest.class);
83:
84: return suite;
85: }
86: }
|