Exemplo n.º 1
0
 public virtual void LaunchApplication()
 {
     try
     {
         Keyboard = Keyboard.Instance;
         TestConfiguration = testMode.GetConfiguration(CommandLineArguments, this);
         Application = TestConfiguration.Launch();
         BaseTestFixtureSetup();
         TestFixtureSetUp();
     }
     catch (Exception e)
     {
         logger.Error("Failed to launch application", e);
         TextFixtureTearDown();
         throw;
     }
 }
Exemplo n.º 2
0
 public virtual void LaunchApplication()
 {
     try
     {
         keyboard = Keyboard.Instance;
         testConfiguration = testMode.GetConfiguration(CommandLineArguments, this);
         application = testConfiguration.Launch();
         BaseTestFixtureSetup();
         TestFixtureSetUp();
     }
     catch (Exception e)
     {
         WhiteLogger.Instance.Error(e);
         TextFixtureTearDown();
         throw;
     }
 }