Files
elwig/Tests/E2ETests/Setup.cs
T
2024-07-07 14:35:54 +02:00

18 lines
366 B
C#

namespace Tests.E2ETests {
[SetUpFixture]
public static class Setup {
private static WinAppDriver? Driver;
[OneTimeSetUp]
public static void SetupWinAppDriver() {
Driver = new();
}
[OneTimeTearDown]
public static void TeardownWinAppDriver() {
Driver?.Dispose();
}
}
}