Skip to content

Commit c867eed

Browse files
committed
Use JUnit 5 convention for class visibility
1 parent ef5de64 commit c867eed

File tree

219 files changed

+222
-222
lines changed

Some content is hidden

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

219 files changed

+222
-222
lines changed

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

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

4040
/**
4141
*/
42-
public class AnnotationUtilsTest extends AbstractLangTest {
42+
class AnnotationUtilsTest extends AbstractLangTest {
4343
@Retention(RetentionPolicy.RUNTIME)
4444
public @interface NestAnnotation {
4545
boolean booleanValue();

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
/**
3636
* Tests {@link AppendableJoiner}.
3737
*/
38-
public class AppendableJoinerTest {
38+
class AppendableJoinerTest {
3939

4040
static class Fixture {
4141

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
/**
3232
* Test class for {@link ArchUtils}.
3333
*/
34-
public class ArchUtilsTest extends AbstractLangTest {
34+
class ArchUtilsTest extends AbstractLangTest {
3535

3636
private static final String IA64 = "ia64";
3737
private static final String IA64_32 = "ia64_32";

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
/**
2929
* Tests {@link ArrayFill}.
3030
*/
31-
public class ArrayFillTest extends AbstractLangTest {
31+
class ArrayFillTest extends AbstractLangTest {
3232

3333
@Test
3434
void testFillBooleanArray() {

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
/**
2828
* Tests {@link ArraySorter}.
2929
*/
30-
public class ArraySorterTest extends AbstractLangTest {
30+
class ArraySorterTest extends AbstractLangTest {
3131

3232
@Test
3333
void testSortByteArray() {

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
/**
3030
* Tests ArrayUtils add methods.
3131
*/
32-
public class ArrayUtilsAddTest extends AbstractLangTest {
32+
class ArrayUtilsAddTest extends AbstractLangTest {
3333

3434
@Test
3535
void testAddFirstBoolean() {

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
/**
2828
* Tests ArrayUtils insert methods.
2929
*/
30-
public class ArrayUtilsInsertTest extends AbstractLangTest {
30+
class ArrayUtilsInsertTest extends AbstractLangTest {
3131

3232
@Test
3333
void testInsertBooleans() {

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
/**
2929
* Tests {@link ArrayUtils} remove and removeElement methods.
3030
*/
31-
public class ArrayUtilsRemoveMultipleTest extends AbstractLangTest {
31+
class ArrayUtilsRemoveMultipleTest extends AbstractLangTest {
3232

3333
private static final int[] NULL_INDICES = null;
3434

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
/**
2828
* Tests ArrayUtils remove and removeElement methods.
2929
*/
30-
public class ArrayUtilsRemoveTest extends AbstractLangTest {
30+
class ArrayUtilsRemoveTest extends AbstractLangTest {
3131

3232
@Test
3333
void testRemoveAllBooleanOccurences() {

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

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

2828
import org.junit.jupiter.api.Test;
2929

30-
public class ArrayUtilsSetTest extends AbstractLangTest {
30+
class ArrayUtilsSetTest extends AbstractLangTest {
3131

3232
@Test
3333
void testSetAll_IntFunction() {

0 commit comments

Comments
 (0)