-
Notifications
You must be signed in to change notification settings - Fork 269
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
Async tests which use Assert.Inconclusive report as Error #249
Comments
Thanks for filing this. I can repro this. I guess this seems to be happening because the error is thrown on another thread which gets wrapped in as an internal exception we do not check. |
This behavior is seen in several places, VS, TFS build, Resharper, etc. Do you think all of those would be resolved by this bug (because they are all relying on something in the nuget), or should I be filing bugs with those products? (because they will have to do this same exception peeking on their own)? |
@Terebi42 : Fixing this bug should take care of all the client scenarios. |
I bugged the VSTS team with this just to learn down the road that it's unfortunately a bug in MSTest indeed. Any plans to address, and asap? It's 100% reproducible. |
@abatishchev: We have been busy with a few other things and this one is currently parked. I can try and help anyone from the community who is willing to take a stab at fixing this though. The code to invoke the test method is here |
I tried debugging this, which wasn't easy with all of the different test frameworks being loaded at the same time (sort of test framework inception). I think I may have found the issue where the Exception being thrown is from the MstestV2 test framework, but the exception being compared against is from the V1 framework. I am not a 100% sure, as my knowledge of the framework is limited. I have forked and committed my changes here: |
@jessehouwing: Thanks. The change looks good to me. Can you please submit a PR? |
I have the same issue, so I tried the "latest" myget daily build I used slightly different async test case code which included an [TestMethod]
public async Task Assert_Inconclusive_Async()
{
await Task.Delay(1);
Assert.Inconclusive("Assert_Inconclusive_Async");
} Does the PR fix #277 work for async test cases for other people? Or could a test case something like the above be added to the "official" test suite to confirm functionality? |
I'll add that locally. The test should be easy to add and check. Just checked and it works:
|
Oops - my bad. I just noticed the "latest" build i was using from myget is So the real problem is that no "daily" builds have been produced in the last 10 days. https://dotnet.myget.org/feed/mstestv2/package/nuget/MSTest.TestFramework Could someone give the build hamsters a poke to wake them up? |
As far as I can tell your test case should succeed on the latest codebase. |
Thanks for confirming @jessehouwing I should be able to use a local dev build for the moment, when I find a machine with UWP SDK installed.... ;) |
Just in case my test method is the following: [TestMethod]
public async Task TestAsync()
{
await Task.Yield();
Assert.Inconclusive();
} |
@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. |
Thanks for confirming. Closing the issue. |
…icrosoft#249) * Added thirt party notice to nuget packages
Description
Async tests which use Assert.Inconclusive report as Error
Steps to reproduce
v1.1.18
The text was updated successfully, but these errors were encountered: