X-Git-Url: http://www2.svjatoslav.eu/gitweb/?p=svjatoslav_commons.git;a=blobdiff_plain;f=src%2Ftest%2Fjava%2Feu%2Fsvjatoslav%2Fcommons%2Fstring%2FWildCardMatcherTest.java;h=a677bb73f5d364d9563bb64154bd1590b4a42784;hp=59dc49fdaede95d703ebd1c67a0fbf23426ac833;hb=9bf004ce4e9b5edff36c65fcc8cc0f303390d7fc;hpb=afaa928dd10304ee3e8e6bad3a377ced6a7b2f42 diff --git a/src/test/java/eu/svjatoslav/commons/string/WildCardMatcherTest.java b/src/test/java/eu/svjatoslav/commons/string/WildCardMatcherTest.java index 59dc49f..a677bb7 100755 --- a/src/test/java/eu/svjatoslav/commons/string/WildCardMatcherTest.java +++ b/src/test/java/eu/svjatoslav/commons/string/WildCardMatcherTest.java @@ -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); - } + } }