I am trying to test a fairly complex class using Moq and am running into a problem.
I am trying to verify that a method does NOT get called, and usually this is simp
Well, this is embarrassing, I've managed to solve it.
In 3.0 you can do this:
mFMXmlC.Verify(f=>f.Put_Queue_Response(It.IsAny<Uri>(),
It.IsAny<string>(),
It.IsAny<string>(),
It.IsAny<object>()), Times.Never());
Still don't understand why VerifyAll
didn't work, but this seems to fit the bill anyway. I'll leave the question up, in case someone else is looking for something similar.