Remove old inline comment

- Javadoc
- Format
This commit is contained in:
Gary Gregory 2024-11-11 10:00:58 -05:00
parent 9e7f5ac132
commit e1f7b4f567
1 changed files with 7 additions and 19 deletions

View File

@ -21,14 +21,6 @@ package org.apache.commons.collections4;
*/ */
public class BulkTest { public class BulkTest {
// Note: BulkTest is Cloneable to make it easier to construct
// BulkTest instances for simple test methods that are defined in
// anonymous inner classes. Basically we don't have to worry about
// finding weird constructors. (And even if we found them, technically
// it'd be illegal for anyone but the outer class to invoke them).
// Given one BulkTest instance, we can just clone it and reset the
// method name for every simple test it defines.
/** Path to test data resources */ /** Path to test data resources */
protected static final String TEST_DATA_PATH = "src/test/resources/org/apache/commons/collections4/data/test/"; protected static final String TEST_DATA_PATH = "src/test/resources/org/apache/commons/collections4/data/test/";
@ -36,10 +28,7 @@ public class BulkTest {
public static final String TEST_PROPERTIES_PATH = "src/test/resources/org/apache/commons/collections4/properties/"; public static final String TEST_PROPERTIES_PATH = "src/test/resources/org/apache/commons/collections4/properties/";
/** /**
* The full name of this bulk test instance. This is the full name * The full name of this bulk test instance.
* that is compared to {@link #ignoredTests} to see if this
* test should be ignored. It's also displayed in the text runner
* to ease debugging.
*/ */
private String verboseName; private String verboseName;
@ -49,8 +38,7 @@ public class BulkTest {
private String name; private String name;
/** /**
* Constructs a new {@code BulkTest} instance that will run the * Constructs a new {@code BulkTest} instance that will run the specified simple test.
* specified simple test.
*/ */
public BulkTest() { public BulkTest() {
this.name = getClass().getSimpleName(); this.name = getClass().getSimpleName();
@ -58,7 +46,7 @@ public class BulkTest {
} }
/** /**
* Returns the name of the simple test method of this {@code BulkTest}. * Gets the name of the simple test method of this {@code BulkTest}.
* *
* @return the name of the simple test method of this {@code BulkTest} * @return the name of the simple test method of this {@code BulkTest}
*/ */
@ -67,7 +55,7 @@ public class BulkTest {
} }
/** /**
* Returns the display name of this {@code BulkTest}. * Gets the display name of this {@code BulkTest}.
* *
* @return the display name of this {@code BulkTest} * @return the display name of this {@code BulkTest}
*/ */