Yoann. B
Yoann. B

Reputation: 11143

What is Rhino Mocks Repeat?

What is Rhino Mocks Repeat ?

Repeat.Any();

Repeat.Once();

What does it mean and how it works ?

Upvotes: 15

Views: 10390

Answers (1)

Matthew Brubaker
Matthew Brubaker

Reputation: 3117

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.

Upvotes: 25

Related Questions