Skip to main content
summaryrefslogtreecommitdiffstats
blob: 0851bb2fa8863851ef214a87203dc528c3b8369b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
/*******************************************************************************
 * Copyright (c) 2001, 2004 IBM Corporation and others.
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.html
 * 
 * Contributors:
 *     IBM Corporation - initial API and implementation
 *******************************************************************************/
package org.eclipse.wst.wsdl.tests;


import junit.framework.Test;
import junit.framework.TestCase;
import junit.framework.TestSuite;

/**
 * @author Kihup Boo
 */
public class AllTestCases extends TestCase
{

  public AllTestCases()
  {
  }

  public static void main(String[] args)
  {
  }
  
  public static Test suite() 
  {
    TestSuite suite = new TestSuite();
    
    // Bug 123547 - comment out this test for now.
    // suite.addTest(InlineSchemaTest.suite());  
    suite.addTest(LoadAndSerializationTest.suite());
    suite.addTest(SemanticTest.suite());
    suite.addTest(WSDLGenerationTest.suite());
    suite.addTest(WSDL4JAPITest.suite());
    suite.addTest(WSDLEMFAPITest.suite());
    suite.addTest(UtilTest.suite());
    suite.addTest(BugFixesTest.suite());
    suite.addTest(LocationTrackingTest.suite());
    
    return suite;
  }

}

Back to the top