You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@commons.apache.org by gg...@apache.org on 2003/12/01 02:02:08 UTC

cvs commit: jakarta-commons-sandbox/vfs/src/test/org/apache/commons/vfs/test ProviderTestSuite.java

ggregory    2003/11/30 17:02:08

  Modified:    vfs/src/test/org/apache/commons/vfs/test
                        ProviderTestSuite.java
  Log:
  Provide an assertion failure message instead of none.
  
  Revision  Changes    Path
  1.14      +3 -2      jakarta-commons-sandbox/vfs/src/test/org/apache/commons/vfs/test/ProviderTestSuite.java
  
  Index: ProviderTestSuite.java
  ===================================================================
  RCS file: /home/cvs/jakarta-commons-sandbox/vfs/src/test/org/apache/commons/vfs/test/ProviderTestSuite.java,v
  retrieving revision 1.13
  retrieving revision 1.14
  diff -u -r1.13 -r1.14
  --- ProviderTestSuite.java	13 Oct 2003 08:42:27 -0000	1.13
  +++ ProviderTestSuite.java	1 Dec 2003 01:02:08 -0000	1.14
  @@ -75,7 +75,8 @@
    * The suite of tests for a file system.
    *
    * @author <a href="mailto:adammurdoch@apache.org">Adam Murdoch</a>
  - * @version $Revision$ $Date$
  + * @author Gary D. Gregory
  + * @version $Id$
    */
   public class ProviderTestSuite
       extends TestSetup
  @@ -196,7 +197,7 @@
           writeFolder = baseFolder.resolveFile( "write-tests" );
   
           // Make some assumptions about the read folder
  -        assertTrue( readFolder.exists() );
  +        assertTrue( "Folder does not exist: " + readFolder, readFolder.exists() );
           assertFalse( readFolder.getName().getPath().equals( FileName.ROOT_PATH ) );
   
           // Configure the tests
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: commons-dev-unsubscribe@jakarta.apache.org
For additional commands, e-mail: commons-dev-help@jakarta.apache.org