Skip to content

Commit

Permalink
Normalize test Javadoc
Browse files Browse the repository at this point in the history
The class name tells you it's a unit test as opposed to an IT test
  • Loading branch information
garydgregory committed Nov 5, 2024
1 parent 67e99da commit 158f0af
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
import org.junit.Test;

/**
* Unit tests for {@link org.apache.commons.fileupload.DefaultFileItem}.
* Tests for {@link org.apache.commons.fileupload.DefaultFileItem}.
*/
@SuppressWarnings({"deprecation"}) // unit tests for deprecated class
public class DefaultFileItemTest {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
import org.junit.Test;

/**
* Unit tests {@link FileItemHeaders} and
* Tests {@link FileItemHeaders} and
* {@link FileItemHeadersImpl}.
*/
public class FileItemHeadersTest {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
import org.junit.Test;

/**
* Unit tests {@link org.apache.commons.fileupload.MultipartStream}.
* Tests {@link org.apache.commons.fileupload.MultipartStream}.
*/
public class MultipartStreamTest {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
import org.junit.Test;

/**
* Unit tests for {@link ParameterParser}.
* Tests for {@link ParameterParser}.
*/
public class ParameterParserTest {

Expand Down

0 comments on commit 158f0af

Please sign in to comment.