Beispiel #1
0
 public void TeardownRunner()
 {
     try
     {
         runner.Dispose();
     }
     catch (Exception)
     {
         throw;
     }
 }
Beispiel #2
0
        public void Can_verify_the_displayed_columns_by_name()
        {
            var runner = new ProjectTestRunner(@"C:\code\FubuMVC.SlickGrid\src\SlickGridStoryteller\storyteller.xml");

            try
            {
                runner.RunAndAssertTest("Simple/Can verify the displayed columns by name");
            }
            finally
            {
                runner.Dispose();
            }
        }
Beispiel #3
0
        private bool ExecuteTest(string projectFile, string testName)
        {
            ProjectTestRunner runner = new ProjectTestRunner(projectFile);

            try
            {
                Test result = runner.RunTest(testName);
                return(result.WasSuccessful());
            }
            catch (Exception e)
            {
                // EXHANDLED:
                Console.WriteLine(e);
                runner.Dispose();
            }
            return(false);
        }
 public void TearDown()
 {
     runner.Dispose();
 }
Beispiel #5
0
 public void TeardownRunner()
 {
     runner.Dispose();
 }