Skip to content

Commit ebb29e9

Browse files
committed
Make test fixture package private
Javadoc
1 parent 110a9f8 commit ebb29e9

File tree

1 file changed

+20
-7
lines changed

1 file changed

+20
-7
lines changed

src/test/java/org/apache/commons/codec/binary/Base64TestData.java

+20-7
Original file line numberDiff line numberDiff line change
@@ -23,22 +23,35 @@
2323
*
2424
* @see <a href="http://www.ietf.org/rfc/rfc2045.txt">RFC 2045</a>
2525
*/
26-
public class Base64TestData {
26+
class Base64TestData {
2727

2828
/**
2929
* A valid base 64 encoding that has a length that is a multiple of 3.
30-
* @see <a href="https://issues.apache.org/jira/browse/CODEC-101">Codec 101</a>
30+
*
31+
* @see <a href="https://issues.apache.org/jira/browse/CODEC-101">CODEC-101</a>
3132
*/
32-
public static final String CODEC_101_INPUT_LENGTH_IS_MULTIPLE_OF_3 = "124";
33+
static final String CODEC_101_INPUT_LENGTH_IS_MULTIPLE_OF_3 = "124";
3334

34-
public static final String CODEC_98_NPE =
35+
/**
36+
* See CODEC-98.
37+
*
38+
* @see <a href="https://issues.apache.org/jira/browse/CODEC-98">CODEC-98</a>
39+
*/
40+
static final String CODEC_98_NPE =
3541
"YWJjZGVmZ2hpamtsbW5vcHFyc3R1dnd4eXpBQkNERUZHSElKS0xNTk9QUVJTVFVWV1hZWjAxMjM";
3642

37-
public static final String CODEC_98_NPE_DECODED =
43+
/**
44+
* See CODEC-98.
45+
*
46+
* @see <a href="https://issues.apache.org/jira/browse/CODEC-98">CODEC-98</a>
47+
*/
48+
static final String CODEC_98_NPE_DECODED =
3849
"abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123";
3950

40-
// OpenSSL doesn't include the final \n, but it would be annoying beyond belief
41-
// to further parameterize commons-codec to support this pointless variation.
51+
/**
52+
* OpenSSL doesn't include the final \n, but it would be annoying beyond belief
53+
* to further parameterize commons-codec to support this pointless variation.
54+
*/
4255
static final String ENCODED_64_CHARS_PER_LINE =
4356
"9IPNKwUvdLiIAp6ctz12SiQmOGstWyYvSPeevufDhrzaws65voykKjbIj33YWTa9\n" +
4457
"xA7c/FHypWclrZhQ7onfc3JE93BJ5fT4R9zAEdjbjy1hv4ZYNnET4WJeXMLJ/5p+\n" +

0 commit comments

Comments
 (0)