Files
elwig/Tests/E2ETests/Setup.cs
Lorenz Stechauner 6b48a1090c
All checks were successful
Test / Run tests (push) Successful in 2m35s
E2ETests: Refactor initial class structure
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();
}
}
}