[Test] public void CallMethodWithThreeParamExpectations()
 {
     mock.Expect("WithThreeArgs", new IsEqual("hello"), new IsEqual("the"), new IsEqual("world"));
     thingy.WithThreeArgs("hello", "the", "world");
     mock.Verify();
 }