using Terminal.Gui; namespace TerminalGuiFluentTesting; /// /// Entry point to fluent assertions. /// public static class With { /// /// Entrypoint to fluent assertions /// /// /// /// public static GuiTestContext A (int width, int height) where T : Toplevel, new () { return new (width, height); } /// /// The global timeout to allow for any given application to run for before shutting down. /// public static TimeSpan Timeout { get; set; } = TimeSpan.FromSeconds (30); }