Open
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.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment