Async tests which use Assert.Inconclusive report as Error
See original GitHub issueDescription
Async tests which use Assert.Inconclusive report as Error
Steps to reproduce
[TestMethod]
public void TestInconclusiveSync()
{
Assert.Inconclusive("This will report as skipped");
}
[TestMethod]
public async Task TestInconclusiveAsync()
{
Assert.Inconclusive("This will report as error");
}
v1.1.18
Issue Analytics
- State:
- Created 6 years ago
- Reactions:1
- Comments:16 (13 by maintainers)
Top Results From Across the Web
c# - Calling Assert.Inconclusive() in an async unit test is ...
When the test is exercising some async methods, and the [TestMethod] signature returns Task then the test is reported in the TestExplorer as...
Read more >Calling Assert.Inconclusive() in an async unit test is reported ...
Coding example for the question Calling Assert.Inconclusive() in an async unit test is reported as a fail-C#. ... use Assert.Inconclusive report as Error....
Read more >Calling Assert.Inconclusive() in an async unit test is ...
Your question system cancels everything without warning if you type ESC key, I'm not typing it all again. Visual Studiowindows 10.0visual studio ...
Read more >Assert.Inconclusive
The Assert.Inconclusive method indicates that the test could not be completed with the data available. It should be used in situations where another...
Read more >Unit Test Sessions reports "Inconclusive: Test not run"
I'm using NUnit, NSubstitude, netcore 2.2 and newest Rider 2019.2, ... Tests are either ignored or reports inconclusive error.
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
@jthelin : Sorry about that. The builds are failing because of service issues. Should be up this week hopefully.
Confirming this issue is fixed for me now that v1.2.0 nuget packages published.