Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

VerityMocks and VerifyAllMocks Static Helper Methods #238

Merged
merged 2 commits into from
May 25, 2016
Merged

VerityMocks and VerifyAllMocks Static Helper Methods #238

merged 2 commits into from
May 25, 2016

Commits on Jan 5, 2016

  1. VerityMocks and VerifyAllMocks Static Helper Methods

    I tend to write the methods below a lot, it saves a few lines:
    
    ```
    mock1.VerifyAll();
    mock2.VerifyAll();
    mock3.VerifyAll();
    // Versus
    Mock.VerifyAll(mock1, mock2, mock3);
    ```
    RehanSaeed committed Jan 5, 2016
    Configuration menu
    Copy the full SHA
    dcef5e9 View commit details
    Browse the repository at this point in the history

Commits on May 25, 2016

  1. Update Mock.cs

    Renamed back to original names
    RehanSaeed committed May 25, 2016
    Configuration menu
    Copy the full SHA
    5fed5a1 View commit details
    Browse the repository at this point in the history