async void
unit tests cannot be run within Visual Studio 2012:
[TestClass]
public class MyTestClass
{
[TestMethod]
public async void InvisibleMyTestMethod()
{
await Task.Delay(1000);
Assert.IsTrue(true);
}
}
If I want to have an asynchronous unit test, the test method has to return a Task:
[TestMethod]
public async Task VisibleMyTestMethod()
{
await Task.Delay(1000);
Assert.IsTrue(true);
}
Why is it so? Not that I absolutely need to have an async void
test method, I am just curious. Visual Studio 2012 gives no warning nor error when you build an async void
test method even though it won't be able to be run...
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…