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 void FixtureSetup() { TestMode testMode = TestMode.Create(Environment.CommandLine); configuration = testMode.GetConfiguration(string.Empty, this); }