mirror of
https://github.com/apache/commons-collections.git
synced 2025-02-17 15:35:00 +00:00
Comment tests which create the serialization files.
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/collections/trunk@1470323 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
5e01d361f0
commit
3058d1865c
@ -155,11 +155,11 @@ public class CompositeSetTest<E> extends AbstractSetTest<E> {
|
||||
return "4";
|
||||
}
|
||||
|
||||
public void testCreate() throws Exception {
|
||||
resetEmpty();
|
||||
writeExternalFormToDisk((java.io.Serializable) getCollection(), "src/test/resources/data/test/CompositeSet.emptyCollection.version4.obj");
|
||||
resetFull();
|
||||
writeExternalFormToDisk((java.io.Serializable) getCollection(), "src/test/resources/data/test/CompositeSet.fullCollection.version4.obj");
|
||||
}
|
||||
// public void testCreate() throws Exception {
|
||||
// resetEmpty();
|
||||
// writeExternalFormToDisk((java.io.Serializable) getCollection(), "src/test/resources/data/test/CompositeSet.emptyCollection.version4.obj");
|
||||
// resetFull();
|
||||
// writeExternalFormToDisk((java.io.Serializable) getCollection(), "src/test/resources/data/test/CompositeSet.fullCollection.version4.obj");
|
||||
// }
|
||||
|
||||
}
|
||||
|
@ -285,11 +285,11 @@ public class ListOrderedSetTest<E>
|
||||
return "4";
|
||||
}
|
||||
|
||||
public void testCreate() throws Exception {
|
||||
resetEmpty();
|
||||
writeExternalFormToDisk((java.io.Serializable) getCollection(), "src/test/resources/data/test/ListOrderedSet.emptyCollection.version4.obj");
|
||||
resetFull();
|
||||
writeExternalFormToDisk((java.io.Serializable) getCollection(), "src/test/resources/data/test/ListOrderedSet.fullCollection.version4.obj");
|
||||
}
|
||||
// public void testCreate() throws Exception {
|
||||
// resetEmpty();
|
||||
// writeExternalFormToDisk((java.io.Serializable) getCollection(), "src/test/resources/data/test/ListOrderedSet.emptyCollection.version4.obj");
|
||||
// resetFull();
|
||||
// writeExternalFormToDisk((java.io.Serializable) getCollection(), "src/test/resources/data/test/ListOrderedSet.fullCollection.version4.obj");
|
||||
// }
|
||||
|
||||
}
|
||||
|
@ -115,11 +115,11 @@ public class PredicatedSetTest<E> extends AbstractSetTest<E> {
|
||||
return "4";
|
||||
}
|
||||
|
||||
public void testCreate() throws Exception {
|
||||
resetEmpty();
|
||||
writeExternalFormToDisk((java.io.Serializable) getCollection(), "src/test/resources/data/test/PredicatedSet.emptyCollection.version4.obj");
|
||||
resetFull();
|
||||
writeExternalFormToDisk((java.io.Serializable) getCollection(), "src/test/resources/data/test/PredicatedSet.fullCollection.version4.obj");
|
||||
}
|
||||
// public void testCreate() throws Exception {
|
||||
// resetEmpty();
|
||||
// writeExternalFormToDisk((java.io.Serializable) getCollection(), "src/test/resources/data/test/PredicatedSet.emptyCollection.version4.obj");
|
||||
// resetFull();
|
||||
// writeExternalFormToDisk((java.io.Serializable) getCollection(), "src/test/resources/data/test/PredicatedSet.fullCollection.version4.obj");
|
||||
// }
|
||||
|
||||
}
|
||||
|
@ -123,11 +123,11 @@ public class PredicatedSortedSetTest<E> extends AbstractSortedSetTest<E> {
|
||||
return "4";
|
||||
}
|
||||
|
||||
public void testCreate() throws Exception {
|
||||
resetEmpty();
|
||||
writeExternalFormToDisk((java.io.Serializable) getCollection(), "src/test/resources/data/test/PredicatedSortedSet.emptyCollection.version4.obj");
|
||||
resetFull();
|
||||
writeExternalFormToDisk((java.io.Serializable) getCollection(), "src/test/resources/data/test/PredicatedSortedSet.fullCollection.version4.obj");
|
||||
}
|
||||
// public void testCreate() throws Exception {
|
||||
// resetEmpty();
|
||||
// writeExternalFormToDisk((java.io.Serializable) getCollection(), "src/test/resources/data/test/PredicatedSortedSet.emptyCollection.version4.obj");
|
||||
// resetFull();
|
||||
// writeExternalFormToDisk((java.io.Serializable) getCollection(), "src/test/resources/data/test/PredicatedSortedSet.fullCollection.version4.obj");
|
||||
// }
|
||||
|
||||
}
|
||||
|
@ -104,11 +104,11 @@ public class TransformedSetTest<E> extends AbstractSetTest<E> {
|
||||
return "4";
|
||||
}
|
||||
|
||||
public void testCreate() throws Exception {
|
||||
resetEmpty();
|
||||
writeExternalFormToDisk((java.io.Serializable) getCollection(), "src/test/resources/data/test/TransformedSet.emptyCollection.version4.obj");
|
||||
resetFull();
|
||||
writeExternalFormToDisk((java.io.Serializable) getCollection(), "src/test/resources/data/test/TransformedSet.fullCollection.version4.obj");
|
||||
}
|
||||
// public void testCreate() throws Exception {
|
||||
// resetEmpty();
|
||||
// writeExternalFormToDisk((java.io.Serializable) getCollection(), "src/test/resources/data/test/TransformedSet.emptyCollection.version4.obj");
|
||||
// resetFull();
|
||||
// writeExternalFormToDisk((java.io.Serializable) getCollection(), "src/test/resources/data/test/TransformedSet.fullCollection.version4.obj");
|
||||
// }
|
||||
|
||||
}
|
||||
|
@ -95,11 +95,11 @@ public class TransformedSortedSetTest<E> extends AbstractSortedSetTest<E> {
|
||||
return "4";
|
||||
}
|
||||
|
||||
public void testCreate() throws Exception {
|
||||
resetEmpty();
|
||||
writeExternalFormToDisk((java.io.Serializable) getCollection(), "src/test/resources/data/test/TransformedSortedSet.emptyCollection.version4.obj");
|
||||
resetFull();
|
||||
writeExternalFormToDisk((java.io.Serializable) getCollection(), "src/test/resources/data/test/TransformedSortedSet.fullCollection.version4.obj");
|
||||
}
|
||||
// public void testCreate() throws Exception {
|
||||
// resetEmpty();
|
||||
// writeExternalFormToDisk((java.io.Serializable) getCollection(), "src/test/resources/data/test/TransformedSortedSet.emptyCollection.version4.obj");
|
||||
// resetFull();
|
||||
// writeExternalFormToDisk((java.io.Serializable) getCollection(), "src/test/resources/data/test/TransformedSortedSet.fullCollection.version4.obj");
|
||||
// }
|
||||
|
||||
}
|
||||
|
@ -69,11 +69,11 @@ public class UnmodifiableSetTest<E> extends AbstractSetTest<E> {
|
||||
return "4";
|
||||
}
|
||||
|
||||
public void testCreate() throws Exception {
|
||||
resetEmpty();
|
||||
writeExternalFormToDisk((java.io.Serializable) getCollection(), "src/test/resources/data/test/UnmodifiableSet.emptyCollection.version4.obj");
|
||||
resetFull();
|
||||
writeExternalFormToDisk((java.io.Serializable) getCollection(), "src/test/resources/data/test/UnmodifiableSet.fullCollection.version4.obj");
|
||||
}
|
||||
// public void testCreate() throws Exception {
|
||||
// resetEmpty();
|
||||
// writeExternalFormToDisk((java.io.Serializable) getCollection(), "src/test/resources/data/test/UnmodifiableSet.emptyCollection.version4.obj");
|
||||
// resetFull();
|
||||
// writeExternalFormToDisk((java.io.Serializable) getCollection(), "src/test/resources/data/test/UnmodifiableSet.fullCollection.version4.obj");
|
||||
// }
|
||||
|
||||
}
|
||||
|
@ -143,11 +143,11 @@ public class UnmodifiableSortedSetTest<E> extends AbstractSortedSetTest<E> {
|
||||
return "4";
|
||||
}
|
||||
|
||||
public void testCreate() throws Exception {
|
||||
resetEmpty();
|
||||
writeExternalFormToDisk((java.io.Serializable) getCollection(), "src/test/resources/data/test/UnmodifiableSortedSet.emptyCollection.version4.obj");
|
||||
resetFull();
|
||||
writeExternalFormToDisk((java.io.Serializable) getCollection(), "src/test/resources/data/test/UnmodifiableSortedSet.fullCollection.version4.obj");
|
||||
}
|
||||
// public void testCreate() throws Exception {
|
||||
// resetEmpty();
|
||||
// writeExternalFormToDisk((java.io.Serializable) getCollection(), "src/test/resources/data/test/UnmodifiableSortedSet.emptyCollection.version4.obj");
|
||||
// resetFull();
|
||||
// writeExternalFormToDisk((java.io.Serializable) getCollection(), "src/test/resources/data/test/UnmodifiableSortedSet.fullCollection.version4.obj");
|
||||
// }
|
||||
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user