public void InstantiateExpectNoException()
 {
     var testController = new TestController();
 }
 public TestControllerTests()
 {
     this.testCommunicator = MockRepository.GenerateStub<ITestCommunicator>();
     this.target = new TestController(testCommunicator);
 }