Skip to content

Commit 87da2aa

Browse files
committed
Javadoc
1 parent 12a1941 commit 87da2aa

23 files changed

Lines changed: 28 additions & 33 deletions

src/test/java/org/apache/commons/io/ByteOrderParserTest.java

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,9 @@
2323

2424
import org.junit.jupiter.api.Test;
2525

26+
/**
27+
* Test for {@link ByteOrderParser}.
28+
*/
2629
public class ByteOrderParserTest {
2730

2831
private ByteOrder parseByteOrder(final String value) {

src/test/java/org/apache/commons/io/CopyUtilsTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
@SuppressWarnings("deprecation") // these are test cases for the deprecated CopyUtils
3838

3939
/**
40-
* JUnit tests for CopyUtils.
40+
* Test for {@link CopyUtils}.
4141
*
4242
* @see CopyUtils
4343
*/

src/test/java/org/apache/commons/io/DemuxInputStreamTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
import org.junit.jupiter.api.Test;
3434

3535
/**
36-
* Basic unit tests for the multiplexing streams.
36+
* Tests {@link DemuxInputStream}.
3737
*/
3838
public class DemuxInputStreamTest {
3939

src/test/java/org/apache/commons/io/DirectoryWalkerTest.java

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,9 +35,7 @@
3535
import org.junit.jupiter.api.Test;
3636

3737
/**
38-
* This is used to test DirectoryWalker for correctness.
39-
*
40-
* @see DirectoryWalker
38+
* Tests {@link DirectoryWalker}.
4139
*/
4240
public class DirectoryWalkerTest {
4341

src/test/java/org/apache/commons/io/EndianUtilsTest.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@
2727
import org.junit.jupiter.api.Test;
2828

2929
/**
30+
* Tests {@link EndianUtils}.
3031
*/
3132
public class EndianUtilsTest {
3233

src/test/java/org/apache/commons/io/FileCleanerTest.java

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,7 @@
1717
package org.apache.commons.io;
1818

1919
/**
20-
* This is used to test {@link FileCleaner} for correctness.
21-
*
22-
* @see FileCleaner
20+
* Tests {@link FileCleaner}.
2321
*/
2422
@SuppressWarnings("deprecation") // testing deprecated class
2523
public class FileCleanerTest extends FileCleaningTrackerTest {

src/test/java/org/apache/commons/io/FileCleaningTrackerTest.java

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -39,9 +39,7 @@
3939
import org.junit.jupiter.api.Test;
4040

4141
/**
42-
* This is used to test {@link FileCleaningTracker} for correctness.
43-
*
44-
* @see FileCleaningTracker
42+
* Tests {@link FileCleaningTracker}.
4543
*/
4644
public class FileCleaningTrackerTest extends AbstractTempDirTest {
4745

src/test/java/org/apache/commons/io/FileDeleteStrategyTest.java

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,7 @@
3030
import org.junit.jupiter.api.Test;
3131
import org.junit.jupiter.api.io.TempDir;
3232
/**
33-
* Test for FileDeleteStrategy.
34-
*
35-
* @see FileDeleteStrategy
33+
* Tests {@link FileDeleteStrategy}.
3634
*/
3735
public class FileDeleteStrategyTest {
3836

src/test/java/org/apache/commons/io/FileSystemUtilsTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
import org.junit.jupiter.api.Test;
3434

3535
/**
36-
* This is used to test FileSystemUtils.
36+
* Tests {@link FileSystemUtils}.
3737
*/
3838
@SuppressWarnings("deprecation") // testing deprecated class
3939
public class FileSystemUtilsTest {

src/test/java/org/apache/commons/io/FileUtilsCopyToFileTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727

2828

2929
/**
30-
* This is used to test FileUtils for correctness.
30+
* Tests {@link FileUtils}.
3131
*/
3232
public class FileUtilsCopyToFileTest {
3333

0 commit comments

Comments
 (0)