E2ETests: Refactor initial class structure
All checks were successful
Test / Run tests (push) Successful in 2m35s
All checks were successful
Test / Run tests (push) Successful in 2m35s
This commit is contained in:
17
Tests/E2ETests/Setup.cs
Normal file
17
Tests/E2ETests/Setup.cs
Normal 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();
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user