示例#1
0
 [Test] public void CallMethodWithStringParameterExpectation()
 {
     mock.Expect("WithSimpleArg", new StartsWith("he"));
     thingy.WithSimpleArg("hello");
     mock.Verify();
 }