You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tapestry.apache.org by hl...@apache.org on 2003/01/14 15:03:50 UTC

cvs commit: jakarta-tapestry/junit/src/net/sf/tapestry/junit TestTapestryCoerceToIterator.java TapestryTestCase.java TapestrySuite.java

hlship      2003/01/14 06:03:50

  Modified:    junit/src/net/sf/tapestry/junit Tag: hship-2-3
                        TapestryTestCase.java TapestrySuite.java
  Added:       junit/src/net/sf/tapestry/junit Tag: hship-2-3
                        TestTapestryCoerceToIterator.java
  Log:
  Add tests for Tapestry.coerceToIterator()
  
  Revision  Changes    Path
  No                   revision
  
  
  No                   revision
  
  
  1.6.2.5   +1 -2      jakarta-tapestry/junit/src/net/sf/tapestry/junit/TapestryTestCase.java
  
  Index: TapestryTestCase.java
  ===================================================================
  RCS file: /home/cvs/jakarta-tapestry/junit/src/net/sf/tapestry/junit/TapestryTestCase.java,v
  retrieving revision 1.6.2.4
  retrieving revision 1.6.2.5
  diff -u -r1.6.2.4 -r1.6.2.5
  --- TapestryTestCase.java	5 Jan 2003 00:24:52 -0000	1.6.2.4
  +++ TapestryTestCase.java	14 Jan 2003 14:03:49 -0000	1.6.2.5
  @@ -1,6 +1,5 @@
   package net.sf.tapestry.junit;
   
  -import java.io.InputStream;
   import java.util.List;
   import java.util.Locale;
   
  
  
  
  1.17.2.7  +2 -1      jakarta-tapestry/junit/src/net/sf/tapestry/junit/TapestrySuite.java
  
  Index: TapestrySuite.java
  ===================================================================
  RCS file: /home/cvs/jakarta-tapestry/junit/src/net/sf/tapestry/junit/TapestrySuite.java,v
  retrieving revision 1.17.2.6
  retrieving revision 1.17.2.7
  diff -u -r1.17.2.6 -r1.17.2.7
  --- TapestrySuite.java	3 Jan 2003 20:53:24 -0000	1.17.2.6
  +++ TapestrySuite.java	14 Jan 2003 14:03:49 -0000	1.17.2.7
  @@ -33,6 +33,7 @@
           TestSuite suite = new TestSuite();
   
           suite.addTestSuite(TestAdaptorRegistry.class);
  +        suite.addTestSuite(TestTapestryCoerceToIterator.class);
           suite.addTestSuite(TestPool.class);
           suite.addTestSuite(TestLocalizedNameGenerator.class);
           suite.addTestSuite(TestResourceLocation.class);
  
  
  
  No                   revision
  
  
  No                   revision
  
  
  1.1.2.1   +196 -0    jakarta-tapestry/junit/src/net/sf/tapestry/junit/Attic/TestTapestryCoerceToIterator.java