public void TrueTest() { AssertPasses(true, ABool.True()); AssertFails(false, ABool.True()); AssertFails(null, ABool.True()); }
protected IMatcher <bool?> IsTrue() { return(ABool.True()); }
public void TitleOkTest() { Scenario("MyTitle").GivenNothing().WhenNothing().Then(true, ABool.True()); }