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; } }
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; } }