Make all tests do both drivers

This commit is contained in:
tznind
2025-03-20 08:26:01 +00:00
committed by Tig
parent a9a9b5bb70
commit bacac70588
3 changed files with 35 additions and 17 deletions

View File

@@ -14,7 +14,7 @@ public static class With
/// <param name="height"></param>
/// <param name="v2TestDriver">Which v2 v2TestDriver to use for the test</param>
/// <returns></returns>
public static GuiTestContext A<T> (int width, int height, V2TestDriver v2TestDriver = V2TestDriver.V2Win) where T : Toplevel, new ()
public static GuiTestContext A<T> (int width, int height, V2TestDriver v2TestDriver) where T : Toplevel, new ()
{
return new (() => new T (), width, height,v2TestDriver);
}