コード例 #1
0
 public void TestMatchNoPattern()
 {
     StringMatch match = new StringMatch("", "");
     Assert.IsTrue(match.Matches("TecPrime.AssemblyClassFinder.Test.UnitTestAppTypeFinder.dll"));
 }
コード例 #2
0
 public void TestMatchRestrictToPatternFalse()
 {
     StringMatch match = new StringMatch("", "^TecPrime");
     Assert.IsFalse(match.Matches("TecPrime.AssemblyClassFinder.Test.UnitTestAppTypeFinder.dll"));
 }
コード例 #3
0
 public void TestMatchBothPatternsTrue()
 {
     StringMatch match = new StringMatch(".*", "^Microsoft");
     Assert.IsTrue(match.Matches("TecPrime.AssemblyClassFinder.Test.UnitTestAppTypeFinder.dll"));
 }