E2ETests: Refactor initial class structure
All checks were successful
Test / Run tests (push) Successful in 2m35s

This commit is contained in:
2024-07-07 14:35:54 +02:00
parent ddd821e478
commit 6b48a1090c
11 changed files with 238 additions and 210 deletions

17
Tests/E2ETests/Setup.cs Normal file
View File

@ -0,0 +1,17 @@
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();
}
}
}