protected virtual void PrintScenarioName()
 {
     var parentMethodName = new StackTrace().GetFrame( 2 ).GetMethod().Name;
     Console.WriteLine( "Scenario: " + parentMethodName.Wordify( StringCase.Title ) );
     Console.WriteLine( "----------------------------" );
 }