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