From 9bf7aa308e4a5cc46e27a8ca9421cc42815c2833 Mon Sep 17 00:00:00 2001 From: Max Horn Date: Fri, 5 Sep 2008 20:07:34 +0000 Subject: Moved matchString from util.* to str.*; added new String::matchString method; fixed matchString doxygen comment (it confused pattern & string); added unit tests for matchString svn-id: r34364 --- test/common/str.h | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) (limited to 'test/common/str.h') diff --git a/test/common/str.h b/test/common/str.h index c4819520d8..921c4614f5 100644 --- a/test/common/str.h +++ b/test/common/str.h @@ -189,4 +189,22 @@ class StringTestSuite : public CxxTest::TestSuite TS_ASSERT(Common::normalizePath("foo//./bar//", '/') == "foo/bar"); TS_ASSERT(Common::normalizePath("foo//.bar//", '/') == "foo/.bar"); } + + void test_matchString(void) { + TS_ASSERT( Common::matchString("monkey.s01", "monkey.s??")); + TS_ASSERT( Common::matchString("monkey.s99", "monkey.s??")); + TS_ASSERT(!Common::matchString("monkey.s101", "monkey.s??")); + + TS_ASSERT( Common::matchString("monkey.s01", "monkey.s?1")); + TS_ASSERT(!Common::matchString("monkey.s99", "monkey.s?1")); + TS_ASSERT(!Common::matchString("monkey.s101", "monkey.s?1")); + + TS_ASSERT( Common::matchString("monkey.s01", "monkey.s*")); + TS_ASSERT( Common::matchString("monkey.s99", "monkey.s*")); + TS_ASSERT( Common::matchString("monkey.s101", "monkey.s*")); + + TS_ASSERT( Common::matchString("monkey.s01", "monkey.s*1")); + TS_ASSERT(!Common::matchString("monkey.s99", "monkey.s*1")); + TS_ASSERT( Common::matchString("monkey.s101", "monkey.s*1")); + } }; -- cgit v1.2.3