Author: bayard
Date: Mon May 12 22:58:10 2008
New Revision: 655743
URL: http://svn.apache.org/viewvc?rev=655743&view=rev
Log:
Changing 'CVS' to 'SVN' as that's what we use now
Modified:
commons/proper/collections/trunk/src/test/org/apache/commons/collections/AbstractTestObject.java
commons/proper/collections/trunk/src/test/org/apache/commons/collections/bag/AbstractTestBag.java
commons/proper/collections/trunk/src/test/org/apache/commons/collections/comparators/AbstractTestComparator.java
commons/proper/collections/trunk/src/test/org/apache/commons/collections/comparators/TestReverseComparator.java
commons/proper/collections/trunk/src/test/org/apache/commons/collections/list/AbstractTestList.java
commons/proper/collections/trunk/src/test/org/apache/commons/collections/map/AbstractTestMap.java
commons/proper/collections/trunk/src/test/org/apache/commons/collections/map/TestIdentityMap.java
Modified:
commons/proper/collections/trunk/src/test/org/apache/commons/collections/AbstractTestObject.java
URL:
http://svn.apache.org/viewvc/commons/proper/collections/trunk/src/test/org/apache/commons/collections/AbstractTestObject.java?rev=655743&r1=655742&r2=655743&view=diff
==============================================================================
---
commons/proper/collections/trunk/src/test/org/apache/commons/collections/AbstractTestObject.java
(original)
+++
commons/proper/collections/trunk/src/test/org/apache/commons/collections/AbstractTestObject.java
Mon May 12 22:58:10 2008
@@ -178,7 +178,7 @@
}
/**
- * Tests serialization by comparing against a previously stored version in
CVS.
+ * Tests serialization by comparing against a previously stored version in
SVN.
* If the test object is serializable, confirm that a canonical form
exists.
*/
public void testCanonicalEmptyCollectionExists() {
@@ -187,14 +187,14 @@
if (object instanceof Serializable) {
String name = getCanonicalEmptyCollectionName(object);
assertTrue(
- "Canonical empty collection (" + name + ") is not in CVS",
+ "Canonical empty collection (" + name + ") is not in SVN",
new File(name).exists());
}
}
}
/**
- * Tests serialization by comparing against a previously stored version in
CVS.
+ * Tests serialization by comparing against a previously stored version in
SVN.
* If the test object is serializable, confirm that a canonical form
exists.
*/
public void testCanonicalFullCollectionExists() {
@@ -203,7 +203,7 @@
if (object instanceof Serializable) {
String name = getCanonicalFullCollectionName(object);
assertTrue(
- "Canonical full collection (" + name + ") is not in CVS",
+ "Canonical full collection (" + name + ") is not in SVN",
new File(name).exists());
}
}
@@ -218,7 +218,7 @@
* even exist in this version).
*
* This constant makes it possible for TestMap (and other subclasses,
- * if necessary) to automatically check CVS for a versionX copy of a
+ * if necessary) to automatically check SVN for a versionX copy of a
* Serialized object, so we can make sure that compatibility is maintained.
* See, for example, TestMap.getCanonicalFullMapName(Map map).
* Subclasses can override this variable, indicating compatibility
@@ -259,7 +259,7 @@
* Write a Serializable or Externalizable object as
* a file at the given path. NOT USEFUL as part
* of a unit test; this is just a utility method
- * for creating disk-based objects in CVS that can become
+ * for creating disk-based objects in SVN that can become
* the basis for compatibility tests using
* readExternalFormFromDisk(String path)
*
@@ -289,7 +289,7 @@
/**
* Reads a Serialized or Externalized Object from disk.
* Useful for creating compatibility tests between
- * different CVS versions of the same class
+ * different SVN versions of the same class
*
* @param path path to the serialized Object
* @return the Object at the given path
Modified:
commons/proper/collections/trunk/src/test/org/apache/commons/collections/bag/AbstractTestBag.java
URL:
http://svn.apache.org/viewvc/commons/proper/collections/trunk/src/test/org/apache/commons/collections/bag/AbstractTestBag.java?rev=655743&r1=655742&r2=655743&view=diff
==============================================================================
---
commons/proper/collections/trunk/src/test/org/apache/commons/collections/bag/AbstractTestBag.java
(original)
+++
commons/proper/collections/trunk/src/test/org/apache/commons/collections/bag/AbstractTestBag.java
Mon May 12 22:58:10 2008
@@ -475,7 +475,7 @@
/**
* Compare the current serialized form of the Bag
- * against the canonical version in CVS.
+ * against the canonical version in SVN.
*/
public void testEmptyBagCompatibility() throws IOException,
ClassNotFoundException {
// test to make sure the canonical form has been preserved
@@ -489,7 +489,7 @@
/**
* Compare the current serialized form of the Bag
- * against the canonical version in CVS.
+ * against the canonical version in SVN.
*/
public void testFullBagCompatibility() throws IOException,
ClassNotFoundException {
// test to make sure the canonical form has been preserved
Modified:
commons/proper/collections/trunk/src/test/org/apache/commons/collections/comparators/AbstractTestComparator.java
URL:
http://svn.apache.org/viewvc/commons/proper/collections/trunk/src/test/org/apache/commons/collections/comparators/AbstractTestComparator.java?rev=655743&r1=655742&r2=655743&view=diff
==============================================================================
---
commons/proper/collections/trunk/src/test/org/apache/commons/collections/comparators/AbstractTestComparator.java
(original)
+++
commons/proper/collections/trunk/src/test/org/apache/commons/collections/comparators/AbstractTestComparator.java
Mon May 12 22:58:10 2008
@@ -193,7 +193,7 @@
/**
* Compare the current serialized form of the Comparator
- * against the canonical version in CVS.
+ * against the canonical version in SVN.
*/
public void testComparatorCompatibility() throws IOException,
ClassNotFoundException {
if(!skipSerializedCanonicalTests()) {
@@ -211,7 +211,7 @@
String fileName =
getCanonicalComparatorName(comparator);
writeExternalFormToDisk((Serializable) comparator,
fileName);
fail("Serialized form could not be found. A serialized
version " +
- "has now been written (and should be added to
CVS): " + fileName);
+ "has now been written (and should be added to
SVN): " + fileName);
} else {
fail("The Serialized form could be located to test
serialization " +
"compatibility: " + exception.getMessage());
Modified:
commons/proper/collections/trunk/src/test/org/apache/commons/collections/comparators/TestReverseComparator.java
URL:
http://svn.apache.org/viewvc/commons/proper/collections/trunk/src/test/org/apache/commons/collections/comparators/TestReverseComparator.java?rev=655743&r1=655742&r2=655743&view=diff
==============================================================================
---
commons/proper/collections/trunk/src/test/org/apache/commons/collections/comparators/TestReverseComparator.java
(original)
+++
commons/proper/collections/trunk/src/test/org/apache/commons/collections/comparators/TestReverseComparator.java
Mon May 12 22:58:10 2008
@@ -51,7 +51,7 @@
* Comparator. The resulting comparator should
* sort according to natural Order. (Note: we wrap
* a Comparator taken from the JDK so that we can
- * save a "canonical" form in CVS.
+ * save a "canonical" form in SVN.
*
* @return Comparator that returns "natural" order
*/
Modified:
commons/proper/collections/trunk/src/test/org/apache/commons/collections/list/AbstractTestList.java
URL:
http://svn.apache.org/viewvc/commons/proper/collections/trunk/src/test/org/apache/commons/collections/list/AbstractTestList.java?rev=655743&r1=655742&r2=655743&view=diff
==============================================================================
---
commons/proper/collections/trunk/src/test/org/apache/commons/collections/list/AbstractTestList.java
(original)
+++
commons/proper/collections/trunk/src/test/org/apache/commons/collections/list/AbstractTestList.java
Mon May 12 22:58:10 2008
@@ -1060,7 +1060,7 @@
/**
* Compare the current serialized form of the List
- * against the canonical version in CVS.
+ * against the canonical version in SVN.
*/
public void testEmptyListCompatibility() throws IOException,
ClassNotFoundException {
/**
@@ -1082,7 +1082,7 @@
/**
* Compare the current serialized form of the List
- * against the canonical version in CVS.
+ * against the canonical version in SVN.
*/
public void testFullListCompatibility() throws IOException,
ClassNotFoundException {
/**
Modified:
commons/proper/collections/trunk/src/test/org/apache/commons/collections/map/AbstractTestMap.java
URL:
http://svn.apache.org/viewvc/commons/proper/collections/trunk/src/test/org/apache/commons/collections/map/AbstractTestMap.java?rev=655743&r1=655742&r2=655743&view=diff
==============================================================================
---
commons/proper/collections/trunk/src/test/org/apache/commons/collections/map/AbstractTestMap.java
(original)
+++
commons/proper/collections/trunk/src/test/org/apache/commons/collections/map/AbstractTestMap.java
Mon May 12 22:58:10 2008
@@ -726,7 +726,7 @@
/**
* Compare the current serialized form of the Map
- * against the canonical version in CVS.
+ * against the canonical version in SVN.
*/
public void testEmptyMapCompatibility() throws Exception {
/**
@@ -747,7 +747,7 @@
/**
* Compare the current serialized form of the Map
- * against the canonical version in CVS.
+ * against the canonical version in SVN.
*/
public void testFullMapCompatibility() throws Exception {
/**
Modified:
commons/proper/collections/trunk/src/test/org/apache/commons/collections/map/TestIdentityMap.java
URL:
http://svn.apache.org/viewvc/commons/proper/collections/trunk/src/test/org/apache/commons/collections/map/TestIdentityMap.java?rev=655743&r1=655742&r2=655743&view=diff
==============================================================================
---
commons/proper/collections/trunk/src/test/org/apache/commons/collections/map/TestIdentityMap.java
(original)
+++
commons/proper/collections/trunk/src/test/org/apache/commons/collections/map/TestIdentityMap.java
Mon May 12 22:58:10 2008
@@ -115,7 +115,7 @@
/**
* Compare the current serialized form of the Map
- * against the canonical version in CVS.
+ * against the canonical version in SVN.
*/
public void testEmptyMapCompatibility() throws IOException,
ClassNotFoundException {
// test to make sure the canonical form has been preserved