-
Notifications
You must be signed in to change notification settings - Fork 291
Convert MSTest to async pattern #1284
Copy link
Copy link
Closed
Labels
Area: MSTestIssues with MSTest that are not specific to more refined area (e.g. analyzers or assertions)Issues with MSTest that are not specific to more refined area (e.g. analyzers or assertions)Breaking ‼️
Milestone
Description
Description
Currently MSTest is based on sync pattern on all the code and we fake async behavior through .Wait(), .GetAwaiter().GetResult() or Task.Run. It would be better to have MSTest fully async.
Note that on the adapter to Test Platform level, our entry points are not async and it won't be possible to convert these. It's ok as we can consider these methods as our main.
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
Area: MSTestIssues with MSTest that are not specific to more refined area (e.g. analyzers or assertions)Issues with MSTest that are not specific to more refined area (e.g. analyzers or assertions)Breaking ‼️