Format consistently {}'s.

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/lang/trunk@1147500 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Gary D. Gregory 2011-07-16 22:29:57 +00:00
parent 137d5f6753
commit 12f8a472c0
1 changed files with 6 additions and 13 deletions

View File

@ -276,19 +276,16 @@ public void testUnescapeHexCharsHtml() {
}
@Test
public void testUnescapeUnknownEntity() throws Exception
{
public void testUnescapeUnknownEntity() throws Exception {
assertEquals("&zzzz;", StringEscapeUtils.unescapeHtml4("&zzzz;"));
}
@Test
public void testEscapeHtmlVersions() throws Exception
{
public void testEscapeHtmlVersions() throws Exception {
assertEquals("Β", StringEscapeUtils.escapeHtml4("\u0392"));
assertEquals("\u0392", StringEscapeUtils.unescapeHtml4("Β"));
// TODO: refine API for escaping/unescaping specific HTML versions
}
@Test
@ -363,8 +360,7 @@ public void testLang313() {
}
@Test
public void testEscapeCsvString() throws Exception
{
public void testEscapeCsvString() throws Exception {
assertEquals("foo.bar", StringEscapeUtils.escapeCsv("foo.bar"));
assertEquals("\"foo,bar\"", StringEscapeUtils.escapeCsv("foo,bar"));
assertEquals("\"foo\nbar\"", StringEscapeUtils.escapeCsv("foo\nbar"));
@ -375,8 +371,7 @@ public void testEscapeCsvString() throws Exception
}
@Test
public void testEscapeCsvWriter() throws Exception
{
public void testEscapeCsvWriter() throws Exception {
checkCsvEscapeWriter("foo.bar", "foo.bar");
checkCsvEscapeWriter("\"foo,bar\"", "foo,bar");
checkCsvEscapeWriter("\"foo\nbar\"", "foo\nbar");
@ -397,8 +392,7 @@ private void checkCsvEscapeWriter(String expected, String value) {
}
@Test
public void testUnescapeCsvString() throws Exception
{
public void testUnescapeCsvString() throws Exception {
assertEquals("foo.bar", StringEscapeUtils.unescapeCsv("foo.bar"));
assertEquals("foo,bar", StringEscapeUtils.unescapeCsv("\"foo,bar\""));
assertEquals("foo\nbar", StringEscapeUtils.unescapeCsv("\"foo\nbar\""));
@ -411,8 +405,7 @@ public void testUnescapeCsvString() throws Exception
}
@Test
public void testUnescapeCsvWriter() throws Exception
{
public void testUnescapeCsvWriter() throws Exception {
checkCsvUnescapeWriter("foo.bar", "foo.bar");
checkCsvUnescapeWriter("foo,bar", "\"foo,bar\"");
checkCsvUnescapeWriter("foo\nbar", "\"foo\nbar\"");