X-Git-Url: http://www2.svjatoslav.eu/gitweb/?a=blobdiff_plain;f=src%2Ftest%2Fjava%2Feu%2Fsvjatoslav%2Fcommons%2Fstring%2FWildCardMatcherTest.java;h=6537fbc6d8e4c605925c029afdf23b90725be715;hb=6846681d727a07385bcd3e0eb856f70a7e96448c;hp=04518fa836481c10b8213fe9033b6d93177445be;hpb=26f09b1ebcafae67855b55ad588d5332a107d202;p=svjatoslav_commons.git diff --git a/src/test/java/eu/svjatoslav/commons/string/WildCardMatcherTest.java b/src/test/java/eu/svjatoslav/commons/string/WildCardMatcherTest.java index 04518fa..6537fbc 100755 --- a/src/test/java/eu/svjatoslav/commons/string/WildCardMatcherTest.java +++ b/src/test/java/eu/svjatoslav/commons/string/WildCardMatcherTest.java @@ -1,52 +1,44 @@ /* * Svjatoslav Commons - shared library of common functionality. - * Copyright (C) 2012, 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 2 of the GNU General Public License - * as published by the Free Software Foundation. + * modify it under the terms of version 3 of the GNU Lesser General Public License + * or later as published by the Free Software Foundation. */ package eu.svjatoslav.commons.string; -import static org.junit.Assert.fail; - -import org.junit.Before; import org.junit.Test; -public class WildCardMatcherTest { - - WildCardMatcher matcher; +import static org.junit.Assert.fail; - @Before - public void setUp() throws Exception { +public class WildCardMatcherTest { - } - @Test - public void test() { + private static void testWildcard(final String string, final String pattern, + final boolean expectedResult) { - 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); + final boolean result = WildCardMatcher.match(string, pattern); - } + if (result != expectedResult) + fail("Wildcard match failed."); - private static void testWildcard(final String string, final String pattern, - final boolean expectedResult) { + } - final boolean result = WildCardMatcher.match(string, pattern); + @Test + public void test() { - if (result != expectedResult) { - fail("Wildcard match failed."); - } + 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); - } + } }