From 10beb8e502ec8cbb02162a09da2d826ea2a1b1fc Mon Sep 17 00:00:00 2001 From: bjculkin Date: Thu, 1 Mar 2018 14:53:15 -0500 Subject: Format pass --- base/src/test/java/bjc/utils/test/ioutils/CLFormatterTest.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'base/src/test') diff --git a/base/src/test/java/bjc/utils/test/ioutils/CLFormatterTest.java b/base/src/test/java/bjc/utils/test/ioutils/CLFormatterTest.java index ee92558..f8b06cf 100644 --- a/base/src/test/java/bjc/utils/test/ioutils/CLFormatterTest.java +++ b/base/src/test/java/bjc/utils/test/ioutils/CLFormatterTest.java @@ -15,19 +15,19 @@ import org.junit.Test; @SuppressWarnings("javadoc") public class CLFormatterTest { private CLFormatter fmt = new CLFormatter(); - + @Test public void testFormatStringLiteral() { assertEquals(fmt.formatString("foo"), "foo"); } - + @Test public void testFormatStringD() { assertEquals(fmt.formatString("~D", 5), "5"); assertEquals(fmt.formatString("~3D", 5), " 5"); assertEquals(fmt.formatString("~3,'0D", 5), "005"); } - + public void testFormatStringR() { assertEquals(fmt.formatString("~R dog~:*~[s are~; is~] here", 3, 3 == 1), "3 dogs are here"); } -- cgit v1.2.3