Skip to content

Instantly share code, notes, and snippets.

@MarcoNicolodi
Created January 13, 2019 21:06
Show Gist options
  • Save MarcoNicolodi/9cc7bedc54c21183cd8ba99ef30dca39 to your computer and use it in GitHub Desktop.
Save MarcoNicolodi/9cc7bedc54c21183cd8ba99ef30dca39 to your computer and use it in GitHub Desktop.
Flaky unit test suite
var businessMock = new Mock<IDocumentBusiness>();
businessMock.Setup(b => b.EnsureCanCancelRevision(It.Is<Document>(calledDocument => calledDocument.Equals(document))));
businessMock.Verify();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment