-
Notifications
You must be signed in to change notification settings - Fork 7
Upgrade NUnit to 4.4.0 #116
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
7f10b38 to
c2c0e01
Compare
c2c0e01 to
2f59e46
Compare
wprzytula
left a comment
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.
❓ What's the very goal of the upgrade?
src/Cassandra.IntegrationTests/Cassandra.IntegrationTests.csproj
Outdated
Show resolved
Hide resolved
2f59e46 to
319f503
Compare
319f503 to
9938185
Compare
| { | ||
| Assert.Fail("Awaited Task without ConfigureAwait() call in file {0}: {1}", | ||
| fileInfo.FullName, match.Value); | ||
| Assert.Fail($"Awaited Task without ConfigureAwait() call in file {fileInfo.FullName}: {match.Value}"); |
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.
Just in case, this one is needed, since Assert.Fail( is a bit different in NUnit.Framework.Legacy.ClassicAssert
To keep this dependancy updated. |
NUnit 4 has different Assert API. So, some test code changes needed.
9938185 to
7f06807
Compare
NUnit 4 has different Assert API.
So, some test code changes needed.