RunAndAssertTest() public method

public RunAndAssertTest ( string testPath ) : void
testPath string
return void
 public void Simple_local_subscription()
 {
     var project =
         new ProjectDirectoryLoader(new FileSystem()).Load(".".ToFullPath().ParentDirectory().ParentDirectory());
     using (var runner = new ProjectTestRunner(project))
     {
         runner.RunAndAssertTest("Subscriptions/Simple local subscription");
     }
 }
 public void Go()
 {
     var loader = new ProjectDirectoryLoader(new FileSystem());
     IProject project = loader.Load(FubuMvcPackageFacility.GetApplicationPath());
     project.TimeoutInSeconds = 240;
     using (var runner = new ProjectTestRunner(project))
     {
         runner.RunAndAssertTest("HealthMonitoring/An inactive task should get reassigned");
     }
 }
        public void SendAndAwait_Happy_Path()
        {
            var project = new Project
            {
                ProjectFolder = ".".ToFullPath().ParentDirectory().ParentDirectory(),
                TimeoutInSeconds = 240
            };

            using (var runner = new ProjectTestRunner(project))
            {
                runner.RunAndAssertTest("Subscriptions/Simple global subscriptions from one node to another");
            }
        }
        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();
            }

            
        }