summaryrefslogtreecommitdiffstats
path: root/pki/base/util/test/com/netscape/security/x509/PrintableConverterTest.java
diff options
context:
space:
mode:
Diffstat (limited to 'pki/base/util/test/com/netscape/security/x509/PrintableConverterTest.java')
-rw-r--r--pki/base/util/test/com/netscape/security/x509/PrintableConverterTest.java30
1 files changed, 15 insertions, 15 deletions
diff --git a/pki/base/util/test/com/netscape/security/x509/PrintableConverterTest.java b/pki/base/util/test/com/netscape/security/x509/PrintableConverterTest.java
index e85d11824..a7acc9c90 100644
--- a/pki/base/util/test/com/netscape/security/x509/PrintableConverterTest.java
+++ b/pki/base/util/test/com/netscape/security/x509/PrintableConverterTest.java
@@ -15,13 +15,13 @@ public class PrintableConverterTest {
public void testEmptyString() throws Exception {
String string = "";
- System.out.println("Converting: ["+string+"]");
+ System.out.println("Converting: [" + string + "]");
byte[] expected = JSSUtil.encode(DerValue.tag_PrintableString, string);
- System.out.println(" - expected: "+StringTestUtil.toString(expected));
+ System.out.println(" - expected: " + StringTestUtil.toString(expected));
byte[] actual = ConverterTestUtil.convert(new PrintableConverter(), string);
- System.out.println(" - actual : "+StringTestUtil.toString(actual));
+ System.out.println(" - actual : " + StringTestUtil.toString(actual));
Assert.assertArrayEquals(expected, actual);
}
@@ -30,18 +30,18 @@ public class PrintableConverterTest {
public void testNullCharacters() throws Exception {
String string = StringTestUtil.NULL_CHARS;
- System.out.println("Converting: ["+StringTestUtil.toString(string.getBytes())+"]");
+ System.out.println("Converting: [" + StringTestUtil.toString(string.getBytes()) + "]");
System.out.println(" - expected: IllegalArgumentException");
try {
byte[] actual = ConverterTestUtil.convert(new PrintableConverter(), string);
- System.out.println(" - actual : "+StringTestUtil.toString(actual));
+ System.out.println(" - actual : " + StringTestUtil.toString(actual));
Assert.fail();
} catch (Exception e) {
- System.out.println(" - actual : "+e.getClass().getSimpleName());
+ System.out.println(" - actual : " + e.getClass().getSimpleName());
Assert.assertTrue(e instanceof IllegalArgumentException);
}
}
@@ -50,13 +50,13 @@ public class PrintableConverterTest {
public void testPrintableCharacters() throws Exception {
String string = StringTestUtil.PRINTABLE_CHARS;
- System.out.println("Converting: ["+string+"]");
+ System.out.println("Converting: [" + string + "]");
byte[] expected = JSSUtil.encode(DerValue.tag_PrintableString, string);
- System.out.println(" - expected: "+StringTestUtil.toString(expected));
+ System.out.println(" - expected: " + StringTestUtil.toString(expected));
byte[] actual = ConverterTestUtil.convert(new PrintableConverter(), string);
- System.out.println(" - actual : "+StringTestUtil.toString(actual));
+ System.out.println(" - actual : " + StringTestUtil.toString(actual));
Assert.assertArrayEquals(expected, actual);
}
@@ -65,18 +65,18 @@ public class PrintableConverterTest {
public void testControlCharacters() throws Exception {
String string = StringTestUtil.CONTROL_CHARS;
- System.out.println("Converting: ["+StringTestUtil.toString(string.getBytes())+"]");
+ System.out.println("Converting: [" + StringTestUtil.toString(string.getBytes()) + "]");
System.out.println(" - expected: IllegalArgumentException");
try {
byte[] actual = ConverterTestUtil.convert(new PrintableConverter(), string);
- System.out.println(" - actual : "+StringTestUtil.toString(actual));
+ System.out.println(" - actual : " + StringTestUtil.toString(actual));
Assert.fail();
} catch (Exception e) {
- System.out.println(" - actual : "+e.getClass().getSimpleName());
+ System.out.println(" - actual : " + e.getClass().getSimpleName());
Assert.assertTrue(e instanceof IllegalArgumentException);
}
}
@@ -85,18 +85,18 @@ public class PrintableConverterTest {
public void testMultibyteCharacters() throws Exception {
String string = StringTestUtil.MULTIBYTE_CHARS;
- System.out.println("Converting: ["+string+"]");
+ System.out.println("Converting: [" + string + "]");
System.out.println(" - expected: IllegalArgumentException");
try {
byte[] actual = ConverterTestUtil.convert(new PrintableConverter(), string);
- System.out.println(" - actual : "+StringTestUtil.toString(actual));
+ System.out.println(" - actual : " + StringTestUtil.toString(actual));
Assert.fail();
} catch (Exception e) {
- System.out.println(" - actual : "+e.getClass().getSimpleName());
+ System.out.println(" - actual : " + e.getClass().getSimpleName());
Assert.assertTrue(e instanceof IllegalArgumentException);
}
}