I'm using Visual Studio Enterprise 2015 and trying to use the feature they call IntelliTest. IntelliTest seems to work fine when testing tradition synchronize methods. However, most of my methods are async and return a Task, which require to be awaited. When I create these IntelliTest unit tests, the results are always Result = "{Not yet computed}". Does IntelliTest not support async methods, or I missing something?
Thanks