Skip to content

Commit 4b43be1

Browse files
committed
Normalize test Javadoc
The class name tells you it's a unit test as opposed to an IT test
1 parent 7715356 commit 4b43be1

File tree

60 files changed

+60
-60
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

60 files changed

+60
-60
lines changed

src/main/java/org/apache/commons/lang3/LocaleUtils.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -251,7 +251,7 @@ public static List<Locale> localeLookupList(final Locale locale, final Locale de
251251
/**
252252
* Tries to parse a Locale from the given String.
253253
* <p>
254-
* See {@Link Locale} for the format.
254+
* See {@link Locale} for the format.
255255
* </p>
256256
*
257257
* @param str the String to parse as a Locale.

src/test/java/org/apache/commons/lang3/ArrayUtilsTest.java

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

4747
/**
48-
* Unit tests {@link ArrayUtils}.
48+
* Tests {@link ArrayUtils}.
4949
*/
5050
@SuppressWarnings("deprecation") // deliberate use of deprecated code
5151
public class ArrayUtilsTest extends AbstractLangTest {

src/test/java/org/apache/commons/lang3/BooleanUtilsTest.java

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

3838
/**
39-
* Unit tests {@link BooleanUtils}.
39+
* Tests {@link BooleanUtils}.
4040
*/
4141
public class BooleanUtilsTest extends AbstractLangTest {
4242

src/test/java/org/apache/commons/lang3/CharRangeTest.java

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

3434
/**
35-
* Unit tests {@link CharRange}.
35+
* Tests {@link CharRange}.
3636
*/
3737
public class CharRangeTest extends AbstractLangTest {
3838

src/test/java/org/apache/commons/lang3/CharSetTest.java

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

3232
/**
33-
* Unit tests {@link CharSet}.
33+
* Tests {@link CharSet}.
3434
*/
3535
public class CharSetTest extends AbstractLangTest {
3636

src/test/java/org/apache/commons/lang3/CharSetUtilsTest.java

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

3030
/**
31-
* Unit tests {@link CharSetUtils}.
31+
* Tests {@link CharSetUtils}.
3232
*/
3333
public class CharSetUtilsTest extends AbstractLangTest {
3434

src/test/java/org/apache/commons/lang3/CharUtilsTest.java

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

3333
/**
34-
* Unit tests {@link CharUtils}.
34+
* Tests {@link CharUtils}.
3535
*/
3636
public class CharUtilsTest extends AbstractLangTest {
3737

src/test/java/org/apache/commons/lang3/ClassUtilsTest.java

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

4949
/**
50-
* Unit tests {@link ClassUtils}.
50+
* Tests {@link ClassUtils}.
5151
*/
5252
@SuppressWarnings("boxing") // JUnit4 does not support primitive equality testing apart from long
5353
public class ClassUtilsTest extends AbstractLangTest {

src/test/java/org/apache/commons/lang3/ConversionTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
import org.junit.jupiter.params.provider.ValueSource;
3030

3131
/**
32-
* Unit tests {@link Conversion}.
32+
* Tests {@link Conversion}.
3333
*/
3434
public class ConversionTest extends AbstractLangTest {
3535

src/test/java/org/apache/commons/lang3/JavaVersionTest.java

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

2727
/**
28-
* Unit tests {@link JavaVersion}.
28+
* Tests {@link JavaVersion}.
2929
*/
3030
public class JavaVersionTest extends AbstractLangTest {
3131

0 commit comments

Comments
 (0)