public void Reset() { Console.WriteLine("REPL resetting"); #if DEV14_OR_LATER var t = ReplWindow.Evaluator.ResetAsync(); #else var t = ReplWindow.Reset(); #endif Assert.IsTrue(t.Wait(10000), "Reset timed out"); Assert.IsTrue(t.Result.IsSuccessful, "Reset failed"); }
public void Reset() { ReplWindow.Reset(); }
public void Reset() { Console.WriteLine("REPL resetting"); Assert.IsTrue(ReplWindow.Reset().Wait(10000)); }