-
Notifications
You must be signed in to change notification settings - Fork 3
Bump MSTest.TestAdapter and MSTest.TestFramework #35
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
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Pull request overview
This PR upgrades MSTest.TestAdapter and MSTest.TestFramework from version 3.6.4 to 4.0.2, a major version bump that brings new assertion capabilities and improved error messages while maintaining backward compatibility with existing test code.
- Updated MSTest.TestAdapter from 3.6.4 to 4.0.2
- Updated MSTest.TestFramework from 3.6.4 to 4.0.2
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
|
@copilot can you investigate the conflicts |
|
@riosengineer I've opened a new pull request, #37, to work on those changes. Once the pull request is ready, I'll request review from you. |
|
@copilot can you check out why it still says their are conflicts after you said they were resolved now? |
|
@riosengineer I've opened a new pull request, #38, to work on those changes. Once the pull request is ready, I'll request review from you. |
|
@dependabot rebase |
|
Looks like this PR has been edited by someone other than Dependabot. That means Dependabot can't rebase it - sorry! If you're happy for Dependabot to recreate it from scratch, overwriting any edits, you can request |
|
@dependabot recreate |
Bumps MSTest.TestAdapter from 3.6.4 to 4.0.2 Bumps MSTest.TestFramework from 3.6.4 to 4.0.2 --- updated-dependencies: - dependency-name: MSTest.TestAdapter dependency-version: 4.0.2 dependency-type: direct:production update-type: version-update:semver-major - dependency-name: MSTest.TestFramework dependency-version: 4.0.2 dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
342b732 to
ffdf036
Compare
Updated MSTest.TestAdapter from 3.6.4 to 4.0.2.
Release notes
Sourced from MSTest.TestAdapter's releases.
4.0.2
See the release notes here
4.0.1
See the release notes here
4.0.0
What is new?
Assert.That
MSTest v4 adds a new type of assertion, that allows you to write any expression, and it will inspect the result to give you more information on failure. Providing a very flexible way to assert complicated expressions. Here a simple example:
CallerArgumentExpression
CallerArgumentExpression is consumed by all assertions, to make them aware of the expressions used in the assertion. In the example below, we now know what both the expected and actual values are. But also what value they come from, giving us opportunity to provide better error messages:
CallerArgumentExpression
CallerArgumentExpression is consumed by all assertions, to make them aware of the expressions used in the assertion. In the example below, we now know what both the expected and actual values are. But also what value they come from, giving us opportunity to provide better error messages: