public TestCaseInterpreter ExpectFalse() { current.ExpectFalse(); tests.Add(current); current = TestCaseInstance.Create(script); return(this); }
public static TestCaseInterpreter Test(string script) { return(new TestCaseInterpreter { script = script, current = TestCaseInstance.Create(script) }); }