Author: niallp
Date: Fri Oct 1 21:41:38 2010
New Revision: 1003659
URL: http://svn.apache.org/viewvc?rev=1003659&view=rev
Log:
Fix test javadoc warnings
Modified:
commons/proper/io/trunk/src/test/org/apache/commons/io/FileUtilsFileNewerTestCase.java
commons/proper/io/trunk/src/test/org/apache/commons/io/filefilter/FileFilterTestCase.java
commons/proper/io/trunk/src/test/org/apache/commons/io/input/BoundedInputStreamTest.java
Modified:
commons/proper/io/trunk/src/test/org/apache/commons/io/FileUtilsFileNewerTestCase.java
URL:
http://svn.apache.org/viewvc/commons/proper/io/trunk/src/test/org/apache/commons/io/FileUtilsFileNewerTestCase.java?rev=1003659&r1=1003658&r2=1003659&view=diff
==============================================================================
---
commons/proper/io/trunk/src/test/org/apache/commons/io/FileUtilsFileNewerTestCase.java
(original)
+++
commons/proper/io/trunk/src/test/org/apache/commons/io/FileUtilsFileNewerTestCase.java
Fri Oct 1 21:41:38 2010
@@ -107,7 +107,7 @@ public class FileUtilsFileNewerTestCase
*
* @param description describes the tested situation
* @param file the file of which the last modification date is compared
- * @param timeMillis the time reference measured in milliseconds since the
epoch
+ * @param time the time reference measured in milliseconds since the epoch
*
* @see FileUtils#isFileNewer(File, long)
* @see FileUtils#isFileNewer(File, Date)
Modified:
commons/proper/io/trunk/src/test/org/apache/commons/io/filefilter/FileFilterTestCase.java
URL:
http://svn.apache.org/viewvc/commons/proper/io/trunk/src/test/org/apache/commons/io/filefilter/FileFilterTestCase.java?rev=1003659&r1=1003658&r2=1003659&view=diff
==============================================================================
---
commons/proper/io/trunk/src/test/org/apache/commons/io/filefilter/FileFilterTestCase.java
(original)
+++
commons/proper/io/trunk/src/test/org/apache/commons/io/filefilter/FileFilterTestCase.java
Fri Oct 1 21:41:38 2010
@@ -1060,7 +1060,7 @@ public class FileFilterTestCase extends
}
/**
- * Test method for {...@link FileFilterUtils#filterList(IOFileFilter,
List)}
+ * Test method for {...@link FileFilterUtils#filter(IOFileFilter, File...)}
* that tests that the method properly filters files from the list.
*/
public void testFilterArray() throws Exception {
@@ -1076,7 +1076,7 @@ public class FileFilterTestCase extends
}
/**
- * Test method for {...@link FileFilterUtils#filterList(IOFileFilter,
List)}
+ * Test method for {...@link FileFilterUtils#filter(IOFileFilter,
java.lang.Iterable)}
* that tests that the method properly filters files from the list.
*/
public void testFilterArray_fromList() throws Exception {
@@ -1093,7 +1093,7 @@ public class FileFilterTestCase extends
}
/**
- * Test method for {...@link FileFilterUtils#filterList(IOFileFilter,
List)}
+ * Test method for {...@link FileFilterUtils#filter(IOFileFilter, File...)}
* that tests <code>null</code> parameters and <code>null</code> elements
* in the provided list.
*/
@@ -1120,7 +1120,7 @@ public class FileFilterTestCase extends
}
/**
- * Test method for {...@link FileFilterUtils#filterList(IOFileFilter,
List)}
+ * Test method for {...@link FileFilterUtils#filterList(IOFileFilter,
java.lang.Iterable)}
* that tests that the method properly filters files from the list.
*/
public void testFilterList() throws Exception {
@@ -1137,7 +1137,7 @@ public class FileFilterTestCase extends
}
/**
- * Test method for {...@link FileFilterUtils#filterList(IOFileFilter,
List)}
+ * Test method for {...@link FileFilterUtils#filterList(IOFileFilter,
File...)}
* that tests that the method properly filters files from the list.
*/
public void testFilterList_fromArray() throws Exception {
@@ -1153,7 +1153,7 @@ public class FileFilterTestCase extends
}
/**
- * Test method for {...@link FileFilterUtils#filterList(IOFileFilter,
List)}
+ * Test method for {...@link FileFilterUtils#filterList(IOFileFilter,
java.lang.Iterable)}
* that tests <code>null</code> parameters and <code>null</code> elements
* in the provided list.
*/
@@ -1178,7 +1178,7 @@ public class FileFilterTestCase extends
}
/**
- * Test method for {...@link FileFilterUtils#filterSet(IOFileFilter, Set)}
+ * Test method for {...@link FileFilterUtils#filterSet(IOFileFilter,
java.lang.Iterable)}
* that tests that the method properly filters files from the set.
*/
public void testFilterSet() throws Exception {
@@ -1195,7 +1195,7 @@ public class FileFilterTestCase extends
}
/**
- * Test method for {...@link FileFilterUtils#filterSet(IOFileFilter, Set)}
+ * Test method for {...@link FileFilterUtils#filterSet(IOFileFilter,
File...)}
* that tests that the method properly filters files from the set.
*/
public void testFilterSet_fromArray() throws Exception {
@@ -1211,7 +1211,7 @@ public class FileFilterTestCase extends
}
/**
- * Test method for {...@link FileFilterUtils#filterSet(IOFileFilter, Set)}
+ * Test method for {...@link FileFilterUtils#filterSet(IOFileFilter,
java.lang.Iterable)}
* that tests <code>null</code> parameters and <code>null</code> elements
* in the provided set.
*/
Modified:
commons/proper/io/trunk/src/test/org/apache/commons/io/input/BoundedInputStreamTest.java
URL:
http://svn.apache.org/viewvc/commons/proper/io/trunk/src/test/org/apache/commons/io/input/BoundedInputStreamTest.java?rev=1003659&r1=1003658&r2=1003659&view=diff
==============================================================================
---
commons/proper/io/trunk/src/test/org/apache/commons/io/input/BoundedInputStreamTest.java
(original)
+++
commons/proper/io/trunk/src/test/org/apache/commons/io/input/BoundedInputStreamTest.java
Fri Oct 1 21:41:38 2010
@@ -34,7 +34,7 @@ public class BoundedInputStreamTest exte
}
/**
- * Test {...@link BoundedInputStream#read()).
+ * Test {...@link BoundedInputStream#read()}.
*/
public void testReadSingle() throws Exception {
BoundedInputStream bounded = null;
@@ -64,7 +64,7 @@ public class BoundedInputStreamTest exte
}
/**
- * Test {...@link BoundedInputStream#read(byte[], int, int))).
+ * Test {...@link BoundedInputStream#read(byte[], int, int)}.
*/
public void testReadArray() throws Exception {