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