public FlowAssertion IsNotNull(object obj) { return(FlowAssertion.Create(this, obj != null)); }
public FlowAssertion IsTrue(bool assert) { return(FlowAssertion.Create(this, assert)); }
public FlowAssertion IsFalse(bool assert) { return(FlowAssertion.Create(this, !assert)); }