Exemplo n.º 1
0
 public static void Cleanup()
 {
     LightBddScope.Cleanup();
 }
Exemplo n.º 2
0
 public static void Setup(TestContext testContext)
 {
     LightBddScope.Initialize(OnConfigure);
 }
Exemplo n.º 3
0
 public static async Task Cleanup()
 {
     LightBddScope.Cleanup();
     await Windows.System.Launcher.LaunchFileAsync(await CurrentTemporaryFolder.GetFileAsync(ReportPath));
 }
Exemplo n.º 4
0
 [AssemblyCleanup] public static void Cleanup()
 {
     LightBddScope.Cleanup();
 }
Exemplo n.º 5
0
        public static void Cleanup()
        {
            LightBddScope.Cleanup();

            // code executed after all scenarios
        }
Exemplo n.º 6
0
        public static void Setup(TestContext testContext)
        {
            LightBddScope.Initialize(OnConfigure);

            // code executed before any scenarios
        }