Code cleanup and formatting. Migrated to java 1.8.
[svjatoslav_commons.git] / src / test / java / eu / svjatoslav / commons / string / WildCardMatcherTest.java
index 59dc49f..a677bb7 100755 (executable)
@@ -9,43 +9,36 @@
 
 package eu.svjatoslav.commons.string;
 
-import static org.junit.Assert.fail;
-
-import org.junit.Before;
 import org.junit.Test;
 
-public class WildCardMatcherTest {
-
-       private static void testWildcard(final String string, final String pattern,
-                       final boolean expectedResult) {
+import static org.junit.Assert.fail;
 
-               final boolean result = WildCardMatcher.match(string, pattern);
+public class WildCardMatcherTest {
 
-               if (result != expectedResult)
-                       fail("Wildcard match failed.");
 
-       }
+    private static void testWildcard(final String string, final String pattern,
+                                     final boolean expectedResult) {
 
-       WildCardMatcher matcher;
+        final boolean result = WildCardMatcher.match(string, pattern);
 
-       @Before
-       public void setUp() throws Exception {
+        if (result != expectedResult)
+            fail("Wildcard match failed.");
 
-       }
+    }
 
-       @Test
-       public void test() {
+    @Test
+    public void test() {
 
-               testWildcard("IMG_9770.JPG", "*.J*", true);
-               testWildcard("1", "1", true);
-               testWildcard("1", "*", true);
-               testWildcard("f", "1", false);
-               testWildcard("Hello !", "Hell*!***", true);
-               testWildcard("Hello !", "Hell*!", true);
-               testWildcard("Hello !", "Hell*", true);
-               testWildcard("Hello !", "Hell", false);
-               testWildcard("Hello !", "* *", true);
+        testWildcard("IMG_9770.JPG", "*.J*", true);
+        testWildcard("1", "1", true);
+        testWildcard("1", "*", true);
+        testWildcard("f", "1", false);
+        testWildcard("Hello !", "Hell*!***", true);
+        testWildcard("Hello !", "Hell*!", true);
+        testWildcard("Hello !", "Hell*", true);
+        testWildcard("Hello !", "Hell", false);
+        testWildcard("Hello !", "* *", true);
 
-       }
+    }
 
 }