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

cvs commit: jakarta-commons/collections/src/test/org/apache/commons/collections/set TestSynchronizedSet.java TestSynchronizedSortedSet.java TestAll.java

scolebourne    2004/06/01 16:08:50

  Modified:    collections/src/test/org/apache/commons/collections/set
                        TestAll.java
  Added:       collections/src/test/org/apache/commons/collections/set
                        TestSynchronizedSet.java
                        TestSynchronizedSortedSet.java
  Log:
  Make synchronized classes serializable
  
  Revision  Changes    Path
  1.7       +4 -1      jakarta-commons/collections/src/test/org/apache/commons/collections/set/TestAll.java
  
  Index: TestAll.java
  ===================================================================
  RCS file: /home/cvs/jakarta-commons/collections/src/test/org/apache/commons/collections/set/TestAll.java,v
  retrieving revision 1.6
  retrieving revision 1.7
  diff -u -r1.6 -r1.7
  --- TestAll.java	20 Apr 2004 23:51:31 -0000	1.6
  +++ TestAll.java	1 Jun 2004 23:08:50 -0000	1.7
  @@ -47,8 +47,11 @@
           suite.addTest(TestMapBackedSet2.suite());
           suite.addTest(TestPredicatedSet.suite());
           suite.addTest(TestPredicatedSortedSet.suite());
  +        suite.addTest(TestSynchronizedSet.suite());
  +        suite.addTest(TestSynchronizedSortedSet.suite());
           suite.addTest(TestTransformedSet.suite());
           suite.addTest(TestTransformedSortedSet.suite());
  +//        suite.addTest(TestTypedSet.suite());
           suite.addTest(TestTypedSortedSet.suite());
           suite.addTest(TestUnmodifiableSet.suite());
           suite.addTest(TestUnmodifiableSortedSet.suite());
  
  
  
  1.1                  jakarta-commons/collections/src/test/org/apache/commons/collections/set/TestSynchronizedSet.java
  
  Index: TestSynchronizedSet.java
  ===================================================================
  /*
   *  Copyright 2004 The Apache Software Foundation
   *
   *  Licensed under the Apache License, Version 2.0 (the "License");
   *  you may not use this file except in compliance with the License.
   *  You may obtain a copy of the License at
   *
   *      http://www.apache.org/licenses/LICENSE-2.0
   *
   *  Unless required by applicable law or agreed to in writing, software
   *  distributed under the License is distributed on an "AS IS" BASIS,
   *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
   *  See the License for the specific language governing permissions and
   *  limitations under the License.
   */
  package org.apache.commons.collections.set;
  
  import java.util.HashSet;
  import java.util.Set;
  
  import junit.framework.Test;
  
  import org.apache.commons.collections.BulkTest;
  
  /**
   * Extension of {@link AbstractTestSet} for exercising the 
   * {@link SynchronizedSet} implementation.
   *
   * @since Commons Collections 3.1
   * @version $Revision: 1.1 $ $Date: 2004/06/01 23:08:50 $
   * 
   * @author Stephen Colebourne
   */
  public class TestSynchronizedSet extends AbstractTestSet{
      
      public TestSynchronizedSet(String testName) {
          super(testName);
      }
      
      public static Test suite() {
          return BulkTest.makeSuite(TestSynchronizedSet.class);
      }
      
      public static void main(String args[]) {
          String[] testCaseName = { TestSynchronizedSet.class.getName()};
          junit.textui.TestRunner.main(testCaseName);
      }
      
     //-------------------------------------------------------------------      
      public Set makeEmptySet() {
          return SynchronizedSet.decorate(new HashSet());
      }
  
      public String getCompatibilityVersion() {
          return "3.1";
      }
  
  //    public void testCreate() throws Exception {
  //        resetEmpty();
  //        writeExternalFormToDisk((java.io.Serializable) collection, "D:/dev/collections/data/test/SynchronizedSet.emptyCollection.version3.1.obj");
  //        resetFull();
  //        writeExternalFormToDisk((java.io.Serializable) collection, "D:/dev/collections/data/test/SynchronizedSet.fullCollection.version3.1.obj");
  //    }
  
  }
  
  
  
  1.1                  jakarta-commons/collections/src/test/org/apache/commons/collections/set/TestSynchronizedSortedSet.java
  
  Index: TestSynchronizedSortedSet.java
  ===================================================================
  /*
   *  Copyright 2004 The Apache Software Foundation
   *
   *  Licensed under the Apache License, Version 2.0 (the "License");
   *  you may not use this file except in compliance with the License.
   *  You may obtain a copy of the License at
   *
   *      http://www.apache.org/licenses/LICENSE-2.0
   *
   *  Unless required by applicable law or agreed to in writing, software
   *  distributed under the License is distributed on an "AS IS" BASIS,
   *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
   *  See the License for the specific language governing permissions and
   *  limitations under the License.
   */
  package org.apache.commons.collections.set;
  
  import java.util.Set;
  import java.util.TreeSet;
  
  import junit.framework.Test;
  
  import org.apache.commons.collections.BulkTest;
  
  /**
   * Extension of {@link AbstractTestSet} for exercising the 
   * {@link SynchronizedSortedSet} implementation.
   *
   * @since Commons Collections 3.1
   * @version $Revision: 1.1 $ $Date: 2004/06/01 23:08:50 $
   * 
   * @author Stephen Colebourne
   */
  public class TestSynchronizedSortedSet extends AbstractTestSortedSet{
      
      public TestSynchronizedSortedSet(String testName) {
          super(testName);
      }
      
      public static Test suite() {
          return BulkTest.makeSuite(TestSynchronizedSortedSet.class);
      }
      
      public static void main(String args[]) {
          String[] testCaseName = { TestSynchronizedSortedSet.class.getName()};
          junit.textui.TestRunner.main(testCaseName);
      }
      
     //-------------------------------------------------------------------      
      public Set makeEmptySet() {
          return SynchronizedSortedSet.decorate(new TreeSet());
      }
  
      public String getCompatibilityVersion() {
          return "3.1";
      }
  
  //    public void testCreate() throws Exception {
  //        resetEmpty();
  //        writeExternalFormToDisk((java.io.Serializable) collection, "D:/dev/collections/data/test/SynchronizedSortedSet.emptyCollection.version3.1.obj");
  //        resetFull();
  //        writeExternalFormToDisk((java.io.Serializable) collection, "D:/dev/collections/data/test/SynchronizedSortedSet.fullCollection.version3.1.obj");
  //    }
  
  }
  
  
  

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