18 lines
366 B
C#
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();
|
|
}
|
|
}
|
|
}
|