Exemple #1
0
        public AppFixture()
        {
            (CurrentPath, App, Automation, MainWindow) = SetupTeardownHelper.Setup();

            if (MainWindow == null || App == null || Automation == null || CurrentPath == null)
            {
                Debug.WriteLine("Could not setup app fixture: One of the instances returned by setup is null");
            }
        }
Exemple #2
0
 public void Dispose()
 {
     SetupTeardownHelper.TearDown(CurrentPath, App, Automation);
 }