StoryTeller.Execution.ProjectTestRunner.Dispose C# (CSharp) Method

Dispose() public method

public Dispose ( ) : void
return void
        public void Dispose()
        {
            _engine.Dispose();
            _engine = null;
        }

Usage Example

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

            
        }
All Usage Examples Of StoryTeller.Execution.ProjectTestRunner::Dispose