You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@juddi.apache.org by sv...@apache.org on 2005/01/16 18:59:22 UTC

cvs commit: ws-juddi/test/src/jaxr/org/apache/juddi/jaxr TestAll.java

sviens      2005/01/16 09:59:22

  Added:       test/src/jaxr/org/apache/juddi/jaxr TestAll.java
  Log:
  JAXR functionality and compatibility tests (uses Apache Scout)
  
  Revision  Changes    Path
  1.1                  ws-juddi/test/src/jaxr/org/apache/juddi/jaxr/TestAll.java
  
  Index: TestAll.java
  ===================================================================
  /*
   * Copyright 2001-2004 The Apache Software Foundation.
   * 
   * Licensed under the Apache License, Version 2.0 (the "License");
   * you may not use this file except in compliance with the License.
   * You may obtain a copy of the License at
   * 
   *      http://www.apache.org/licenses/LICENSE-2.0
   * 
   * Unless required by applicable law or agreed to in writing, software
   * distributed under the License is distributed on an "AS IS" BASIS,
   * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
   * See the License for the specific language governing permissions and
   * limitations under the License.
   */
  package org.apache.juddi.jaxr;
  
  import junit.framework.*;
  
  /**
   * @author Steve Viens (sviens@users.sourceforge.net)
   */
  public class TestAll extends TestCase
  {
    public TestAll(String testName)
    {
        super(testName);
    }
  
    public static Test suite()
    {
      TestSuite suite = new TestSuite();
  
      //suite.addTestSuite(TestFindBusiness.class);
      //suite.addTestSuite(TestSaveBusiness.class);
      //suite.addTestSuite(Test_save_tModel.class);
      //suite.addTestSuite(TestAddPublisherAssertion.class);
      return suite;
    }
  
    public static void main(String args[])
    {
        String[] testCaseName = { TestAll.class.getName() };
        junit.textui.TestRunner.main(testCaseName);
    }
  }