bodewig     2003/10/10 06:56:42

  Modified:    src/main/org/apache/tools/ant/taskdefs/optional/junit Tag:
                        ANT_16_BRANCH JUnitTestRunner.java
  Log:
  Merge from HEAD
  
  Revision  Changes    Path
  No                   revision
  No                   revision
  1.42.2.1  +2 -4      
ant/src/main/org/apache/tools/ant/taskdefs/optional/junit/JUnitTestRunner.java
  
  Index: JUnitTestRunner.java
  ===================================================================
  RCS file: 
/home/cvs/ant/src/main/org/apache/tools/ant/taskdefs/optional/junit/JUnitTestRunner.java,v
  retrieving revision 1.42
  retrieving revision 1.42.2.1
  diff -u -r1.42 -r1.42.2.1
  --- JUnitTestRunner.java      21 Sep 2003 20:20:03 -0000      1.42
  +++ JUnitTestRunner.java      10 Oct 2003 13:56:42 -0000      1.42.2.1
  @@ -247,11 +247,9 @@
               try {
                   // check if there is a suite method
                   suiteMethod = testClass.getMethod("suite", new Class[0]);
  -            } catch (Exception e) {
  +            } catch (NoSuchMethodException e) {
                   // no appropriate suite method found. We don't report any
  -                // error here since it might be perfectly normal. We don't
  -                // know exactly what is the cause, but we're doing exactly
  -                // the same as JUnit TestRunner do. We swallow the 
exceptions.
  +                // error here since it might be perfectly normal.
               }
               if (suiteMethod != null) {
                   // if there is a suite method available, then try
  
  
  

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

Reply via email to