Code formatting.
[svjatoslav_commons.git] / src / test / java / eu / svjatoslav / commons / string / String2Test.java
index f13d0d2..0e31c82 100755 (executable)
@@ -1,7 +1,7 @@
 /*
  * Svjatoslav Commons - shared library of common functionality.
- * Copyright ©2012-2014, Svjatoslav Agejenko, svjatoslav@svjatoslav.eu
- * 
+ * Copyright ©2012-2017, Svjatoslav Agejenko, svjatoslav@svjatoslav.eu
+ *
  * This program is free software; you can redistribute it and/or
  * modify it under the terms of version 3 of the GNU Lesser General Public License
  * or later as published by the Free Software Foundation.
@@ -9,41 +9,51 @@
 
 package eu.svjatoslav.commons.string;
 
-import static org.junit.Assert.assertEquals;
-
 import org.junit.Test;
 
+import static org.junit.Assert.assertEquals;
+
 public class String2Test {
 
-       @Test
-       public void testCutLeft() {
+    @Test
+    public void testTrimPrefix() {
+
+        final String2 s = new String2("this is a test");
+
+        assertEquals("is a test", s.trimPrefix(5).toString());
+        assertEquals("a test", s.trimPrefix(3).toString());
+        assertEquals("test", s.trimPrefix(2).toString());
+        assertEquals("", s.trimPrefix(500).toString());
+    }
+
+    @Test
+    public void testTrimSuffix() {
 
-               final String2 s = new String2("this is a test");
+        final String2 s = new String2("this is a test");
 
-               assertEquals("this ", s.cutLeft(5));
-               assertEquals("is ", s.cutLeft(3));
-               assertEquals("a ", s.cutLeft(2));
-               assertEquals("test", s.cutLeft(25));
-               assertEquals("", s.cutLeft(5));
+        assertEquals("this is a", s.trimSuffix(5).toString());
+        assertEquals("this is", s.trimSuffix(2).toString());
+        assertEquals("this", s.trimSuffix(3).toString());
+        assertEquals("", s.trimSuffix(500).toString());
+    }
 
-       }
 
-       @Test
-       public void testEnforceLength() {
-               final String2 s = new String2("12345678");
-               s.enforceLength(3);
-               assertEquals("123", s.toString());
+    @Test
+    public void testEnforceLength() {
+        final String2 s = new String2("12345678");
+        s.enforceLength(3);
+        assertEquals("123", s.toString());
 
-               s.enforceLength(5);
-               assertEquals("123  ", s.toString());
-       }
+        s.enforceLength(5);
+        assertEquals("123  ", s.toString());
+    }
 
-       @Test
-       public void testSuffexAndPrefix() {
-               final String2 s = new String2("experiment");
-               s.addPrefix("The ").addSuffix(" !");
+    @Test
+    public void testSuffixAndPrefix() {
+        final String2 s = new String2("experiment");
+        s.addPrefix("The ").addSuffix(" !");
 
-               assertEquals("The experiment !", s.toString());
-       }
+        assertEquals("The experiment !", s.toString());
+    }
 
 }