diff options
Diffstat (limited to 'test')
-rw-r--r-- | test/common/str.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/test/common/str.h b/test/common/str.h index e1f2b39578..0dd075f848 100644 --- a/test/common/str.h +++ b/test/common/str.h @@ -310,6 +310,9 @@ class StringTestSuite : public CxxTest::TestSuite 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::String("").matchString("*_")); + TS_ASSERT(Common::String("a").matchString("a***")); } void test_string_printf() { |