| 12345678910111213141516171819202122232425262728293031323334353637383940414243 |
-
- namespace TerminalGuiFluentTesting;
- /// <summary>
- /// Entry point to fluent assertions.
- /// </summary>
- public static class With
- {
- /// <summary>
- /// Entrypoint to fluent assertions
- /// </summary>
- /// <param name="width"></param>
- /// <param name="height"></param>
- /// <param name="testDriver">Which v2 testDriver to use for the test</param>
- /// <param name="logWriter"></param>
- /// <returns></returns>
- public static GuiTestContext A<T> (int width, int height, TestDriver testDriver, TextWriter? logWriter = null) where T : Toplevel, new()
- {
- return new (() => new T ()
- {
- //Id = $"{typeof (T).Name}"
- }, width, height, testDriver, logWriter, Timeout);
- }
- /// <summary>
- /// Overload that takes a function to create instance <paramref name="toplevelFactory"/> after application is initialized.
- /// </summary>
- /// <param name="toplevelFactory"></param>
- /// <param name="width"></param>
- /// <param name="height"></param>
- /// <param name="testDriver"></param>
- /// <returns></returns>
- public static GuiTestContext A (Func<Toplevel> toplevelFactory, int width, int height, TestDriver testDriver)
- {
- return new (toplevelFactory, width, height, testDriver, null, Timeout);
- }
- /// <summary>
- /// The global timeout to allow for any given application to run for before shutting down.
- /// </summary>
- public static TimeSpan Timeout { get; set; } = TimeSpan.FromSeconds (30);
- }
|