Example #1
0
 public void Matches(Regex expected, string actual, string message, params object[] args)
 {
     That(actual, Matchers.Match(expected), message, (object[])args);
 }
Example #2
0
 public static void Match(this IExpectation <string> e, Regex expected, string message, params object[] args)
 {
     e.Like(Matchers.Match(expected), message, (object[])args);
 }
Example #3
0
 public void Matches(string expected, RegexOptions options, string actual, string message, params object[] args)
 {
     That(actual, Matchers.Match(expected, options), message, (object[])args);
 }
Example #4
0
 public void DoesNotMatch(string expected, string actual, string message, params object[] args)
 {
     NotThat(actual, Matchers.Match(expected), message, (object[])args);
 }