Skip to content

Release - v2.7.0.0

Latest
Compare
Choose a tag to compare
@cjdutoit cjdutoit released this 19 Jul 18:14
· 42 commits to main since this release
15d0c8f
  • Now support comparing InnerExceptions if the exceptions is an aggregate exception

  • SameExceptionAs overload to provide error details if there is a mismatch

    You can now either do:

    bool isMatch = actualException.SameExceptionAs(expectedException;

    OR to get the details if there is any differences

    bool isMatch = actualException.SameExceptionAs(expectedException, out string message);