We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
If a test is reported inconclusive in its TestInitialize but is adorned with a ExpectedException attribute, it fails.
ExpectedException
[TestInitialize] public void TestInit() { Assert.Inconclusive(); } [TestMethod] [ExpectedException(typeof(NullReferenceException))] public void TestMethod1() { }
The test is inconclusive.
The test fails.
MSTest.TestFramework: 1.1.14. MSTest.TestAdapter: 1.1.14.
The text was updated successfully, but these errors were encountered:
Fix for microsoft#136. We were not checking if Test Initialize was co…
6457fab
…mplete. Doing so now.
Fix for #136. We were not checking if Test Initialize was complete. D…
8469276
…oing so now. (#146)
Merge pull request microsoft#136 from smadala/Satya/CorePDBSupportInOM
abcb4ed
add dotnet core support for DiaSession, fixes microsoft#46
AbhitejJohn
No branches or pull requests
Description
If a test is reported inconclusive in its TestInitialize but is adorned with a
ExpectedException
attribute, it fails.Steps to reproduce
Expected behavior
The test is inconclusive.
Actual behavior
The test fails.
Environment
MSTest.TestFramework: 1.1.14.
MSTest.TestAdapter: 1.1.14.
The text was updated successfully, but these errors were encountered: