We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cf52fa7 commit fd2a856Copy full SHA for fd2a856
Samples/TestStack.BDDfy.Samples/AsyncExample.cs
@@ -31,10 +31,11 @@ private async Task<Sut> CreateSut()
31
}
32
33
[Test]
34
- [Explicit]
35
public void Run()
36
{
37
- this.BDDfy();
+ var engine = this.LazyBDDfy();
+ var exception = Assert.Throws<Exception>(() => engine.Run());
38
+ Assert.AreEqual("Exception in async void method!!", exception.Message);
39
40
41
internal class Sut
0 commit comments