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;
     }
 }
Пример #2
0
        public void FixtureSetup()
        {
            TestMode testMode = TestMode.Create(Environment.CommandLine);

            configuration = testMode.GetConfiguration(string.Empty, this);
        }