Skip to content

Commit

Permalink
Javadoc
Browse files Browse the repository at this point in the history
  • Loading branch information
garydgregory committed Feb 9, 2025
1 parent 97bad0a commit b0a9dac
Show file tree
Hide file tree
Showing 9 changed files with 15 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@
import org.junit.jupiter.api.Test;

/**
* Tests {@link Base16InputStream}.
*/
public class Base16InputStreamTest {

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

/**
* Tests {@link Base16OutputStream}.
*/
public class Base16OutputStreamTest {

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

/**
* Test cases for Base16 class.
* Tests {@link Base16}.
*/
public class Base16Test {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,9 @@
import org.apache.commons.codec.CodecPolicy;
import org.junit.jupiter.api.Test;

/**
* Tests {@link Base32InputStream}.
*/
public class Base32InputStreamTest {

private static final String ENCODED_FOO = "MZXW6===";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,9 @@
import org.apache.commons.codec.CodecPolicy;
import org.junit.jupiter.api.Test;

/**
* Tests {@link Base32OutputStream}.
*/
public class Base32OutputStreamTest {

private static final byte[] CR_LF = {(byte) '\r', (byte) '\n'};
Expand Down
3 changes: 3 additions & 0 deletions src/test/java/org/apache/commons/codec/binary/Base32Test.java
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,9 @@
import org.apache.commons.lang3.ArrayUtils;
import org.junit.jupiter.api.Test;

/**
* Tests {@link Base32}.
*/
public class Base32Test {

private static final Charset CHARSET_UTF8 = StandardCharsets.UTF_8;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@
import org.junit.jupiter.api.Test;

/**
* Tests {@link Base64InputStream}.
*/
public class Base64InputStreamTest {

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

/**
* Tests {@link Base64OutputStream}.
*/
public class Base64OutputStreamTest {

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

/**
* Test cases for Base64 class.
* Tests {@link Base64}.
*
* @see <a href="http://www.ietf.org/rfc/rfc2045.txt">RFC 2045</a>
*/
Expand Down

0 comments on commit b0a9dac

Please sign in to comment.