Exemplo n.º 1
0
 [Test] public void CallMethodWithLotsOfArgsExpectations()
 {
     mock.Expect("WithLotsOfArgs", new IsEqual("hello"), new IsEqual("world"), new IsEqual("is"), new IsEqual("this"), new IsEqual("the"), new IsEqual("end"));
     thingy.WithLotsOfArgs("hello", "world", "is", "this", "the", "end");
     mock.Verify();
 }