public void RunShouldCallTestAction()
 {
     testAction = TestMethod;
     var wrapper = new TestActionWrapper(testAction);
     testIsMethodCalled = false;
     wrapper.Run();
     Assert.That(testIsMethodCalled);
 }
 public void CtorShouldSetTestAction()
 {
     testAction = TestMethod;
     var wrapper = new TestActionWrapper(testAction);
     Assert.That(wrapper.TestAction, Is.SameAs(testAction));
 }