It is used with the Expect construct as part of a fluent declaration. As for what it means: it means that the previous event is expected to occur that many times.
For instance: Expect.Call(someMethod()).Repeat.Twice() says that someMethod() will be called exactly two times.
It is used with the
Expect
construct as part of a fluent declaration. As for what it means: it means that the previous event is expected to occur that many times.For instance:
Expect.Call(someMethod()).Repeat.Twice()
says thatsomeMethod()
will be called exactly two times.