Skip to content

Instantly share code, notes, and snippets.

@uuklanger
Created October 3, 2019 15:42
Show Gist options
  • Save uuklanger/c500df8c332c7403a6d5498751c1e8dd to your computer and use it in GitHub Desktop.
Save uuklanger/c500df8c332c7403a6d5498751c1e8dd to your computer and use it in GitHub Desktop.
HOWTO - Fake await Calls in async Testing Code to avoid Compiler Warnings for Methods that have Nothing awaitable
// Official Microsoft Way
await Task.CompletedTask;
// Alternate Way
await Task.Delay(0);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment