Skip to content

Commit e1f7b4f

Browse files
committed
Remove old inline comment
- Javadoc - Format
1 parent 9e7f5ac commit e1f7b4f

File tree

1 file changed

+7
-19
lines changed

1 file changed

+7
-19
lines changed

src/test/java/org/apache/commons/collections4/BulkTest.java

Lines changed: 7 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -21,55 +21,43 @@
2121
*/
2222
public class BulkTest {
2323

24-
// Note: BulkTest is Cloneable to make it easier to construct
25-
// BulkTest instances for simple test methods that are defined in
26-
// anonymous inner classes. Basically we don't have to worry about
27-
// finding weird constructors. (And even if we found them, technically
28-
// it'd be illegal for anyone but the outer class to invoke them).
29-
// Given one BulkTest instance, we can just clone it and reset the
30-
// method name for every simple test it defines.
31-
3224
/** Path to test data resources */
3325
protected static final String TEST_DATA_PATH = "src/test/resources/org/apache/commons/collections4/data/test/";
3426

3527
/** Path to test properties resources */
3628
public static final String TEST_PROPERTIES_PATH = "src/test/resources/org/apache/commons/collections4/properties/";
3729

3830
/**
39-
* The full name of this bulk test instance. This is the full name
40-
* that is compared to {@link #ignoredTests} to see if this
41-
* test should be ignored. It's also displayed in the text runner
42-
* to ease debugging.
31+
* The full name of this bulk test instance.
4332
*/
4433
private String verboseName;
4534

4635
/**
47-
* the name of the simple test method
36+
* the name of the simple test method
4837
*/
4938
private String name;
5039

5140
/**
52-
* Constructs a new {@code BulkTest} instance that will run the
53-
* specified simple test.
41+
* Constructs a new {@code BulkTest} instance that will run the specified simple test.
5442
*/
5543
public BulkTest() {
5644
this.name = getClass().getSimpleName();
5745
this.verboseName = getClass().getName();
5846
}
5947

6048
/**
61-
* Returns the name of the simple test method of this {@code BulkTest}.
49+
* Gets the name of the simple test method of this {@code BulkTest}.
6250
*
63-
* @return the name of the simple test method of this {@code BulkTest}
51+
* @return the name of the simple test method of this {@code BulkTest}
6452
*/
6553
public String getName() {
6654
return name;
6755
}
6856

6957
/**
70-
* Returns the display name of this {@code BulkTest}.
58+
* Gets the display name of this {@code BulkTest}.
7159
*
72-
* @return the display name of this {@code BulkTest}
60+
* @return the display name of this {@code BulkTest}
7361
*/
7462
@Override
7563
public String toString() {

0 commit comments

Comments
 (0)