Example #1
0
 ITestMatcher <bool> ITestMatcherFactory <bool> .CreateMatcher(TestContext testContext)
 {
     return(Matchers.BeTrue());
 }
Example #2
0
 public void True(bool condition, string message, params object[] args)
 {
     That(condition, Matchers.BeTrue(), message, args);
 }
Example #3
0
 public static void True(this IExpectation <bool> e, string message, params object[] args)
 {
     e.Like(Matchers.BeTrue(), message, (object[])args);
 }
Example #4
0
 public void True(bool condition)
 {
     That(condition, Matchers.BeTrue());
 }