public void Run_UnitTestsPadNotCreatedAndNoSolutionOpen_NullReferenceExceptionNotThrown()
        {
            CreateRunTestCommand();
            NoSolutionOpen();

            Assert.DoesNotThrow(() => runTestCommand.Run());
        }
 public void RunTestCommandRunMethodDoesNotThrowNullReferenceException()
 {
     Assert.DoesNotThrow(delegate { runTestCommand.Run(); });
 }