Last active
December 11, 2015 08:48
-
-
Save simoneb/4575750 to your computer and use it in GitHub Desktop.
A simple test - workaround for async
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[Test] | |
public void OneSimpleTest() | |
{ | |
var eightBall = new EightBall(); | |
Task<bool> answer = eightBall.ShouldIChangeJob(); | |
answer.Wait(); | |
Assert.That(answer.Result, Is.True); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment