Code formatting.
[svjatoslav_commons.git] / src / test / java / eu / svjatoslav / commons / string / WildCardMatcherTest.java
index 59dc49f..ce2f2f6 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,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);
 
-       }
+    }
 
 }