Async Theories
I have a test case where I've got a theory with some data points, but the thing I need to test is a component.
When I change [Theory] to [Theory(async)] and add an asyncHandler in the method, I get an error stating:
"Cannot add asynchronous functionality to methods defined by Test,Before or After that are not marked async"
I guess async theories are not possible currently? Are there some simple changes I can make to some source to get this working quickly?
