The exact situation is I'm doing E2E tests with Protractor.NET (.NET port of AngularJS's Protractor E2E framework) and I would like to make some web requests (and the API -- System.Net.Http.HttpClient
-- has all Async/Task
methods) to Arrange my test before I Act/Assert, only I need to do this same Arrange-ing for several tests.
I'm using xUnit.net as my test runner they use an interface (IUseFixture<T>
) for per-fixture setup code. It would be nice if there was a IAsyncUseFixture<T>
that had a Task SetFixtureAsync(T t);
or something. I don't think such a thing exists. Additionally I don't think constructors can use await
either, and constructors are the only other way to execute the same block of code per-test in xUnit.net.
What are my options? .Result
? Isn't that bad practice (deadlock)?
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…