You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@cocoon.apache.org by je...@apache.org on 2003/05/31 14:51:53 UTC

cvs commit: cocoon-2.1/src/test/org/apache/cocoon/util/test IOUtilsTestCase.java

jefft       2003/05/31 05:51:53

  Modified:    src/test/org/apache/cocoon/util/test IOUtilsTestCase.java
  Log:
  Add some tests from ../IOUtilsTest.java
  
  Revision  Changes    Path
  1.3       +3 -1      cocoon-2.1/src/test/org/apache/cocoon/util/test/IOUtilsTestCase.java
  
  Index: IOUtilsTestCase.java
  ===================================================================
  RCS file: /home/cvs/cocoon-2.1/src/test/org/apache/cocoon/util/test/IOUtilsTestCase.java,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- IOUtilsTestCase.java	16 Mar 2003 18:03:56 -0000	1.2
  +++ IOUtilsTestCase.java	31 May 2003 12:51:53 -0000	1.3
  @@ -104,6 +104,8 @@
                   new String[]{"a\\b\\c", "a" + File.separator + "b" + File.separator + "c"},
                   
                   new String[]{"a/b/../c", "a" + File.separator + "c"},
  +                new String[]{"public/final.xml", "public_" + File.separator + "final_xml"},
  +                new String[]{"123", "_123"}
                   };
           for (int i = 0; i < test_values.length; i++) {
               String tests[] = (String[]) test_values[i];