On 24 нояб, 19:56, "Brian J. Cardiff" <
bcard...@gmail.com> wrote:
> you can add an "expectation".
>
> var mock = new Mock<IWithFoo>();
> mock.Expect(x => x.Foo(It.IsAny<string>())).Never();
>
> where
> public interface IWithFoo {
> void Foo(string s);
>
> }
>
> but I would like a way to stand for that at the end of the tests near the
> Verify method call.
>
> Brian J. Cardiff
> bcardiff(?)
gmail.com
> .
>