Skip to content

Instantly share code, notes, and snippets.

@PProvost
Created March 8, 2012 06:31
Show Gist options
  • Select an option

  • Save PProvost/1999196 to your computer and use it in GitHub Desktop.

Select an option

Save PProvost/1999196 to your computer and use it in GitHub Desktop.
MS-Test Async Test Example
[TestMethod]
public async Task MyAsyncTest()
{
var result = await SomeLongRunningOperation();
Assert.IsTrue( result );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment