donaldp     2002/09/06 18:16:08

  Added:       loader/src/test/org/apache/excalibur/loader/test
                        LoaderTestSuite.java
  Log:
  Add in scaffolding for test suite
  
  Revision  Changes    Path
  1.1                  
jakarta-avalon-excalibur/loader/src/test/org/apache/excalibur/loader/test/LoaderTestSuite.java
  
  Index: LoaderTestSuite.java
  ===================================================================
  /*
   * Copyright  The Apache Software Foundation. All rights reserved.
   *
   * This software is published under the terms of the Apache Software License
   * version 1.1, a copy of which has been included with this distribution in
   * the LICENSE.txt file.
   */
  package org.apache.excalibur.loader.test;
  
  import junit.framework.Test;
  import junit.framework.TestSuite;
  
  /**
   * A basic test suite that tests all the Loader package.
   */
  public class LoaderTestSuite
  {
      public static Test suite()
      {
          final TestSuite suite = new TestSuite( "Loader Utilities" );
          //suite.addTest( new TestSuite( ResourceManagerTestCase.class ) );
          return suite;
      }
  }
  
  
  

--
To unsubscribe, e-mail:   <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>

Reply via email to