Skip to content

Instantly share code, notes, and snippets.

@deapsquatter
Created June 20, 2013 14:40
Show Gist options
  • Save deapsquatter/5823304 to your computer and use it in GitHub Desktop.
Save deapsquatter/5823304 to your computer and use it in GitHub Desktop.
Example test using Async
[Test( Description="Should Login OK" )]
public async void OK ()
{
var loginSession = LoginSession.Instance;
await loginSession.Login ("user", "password");
Assert.True (LoginSession.Instance.LoggedIn);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment