You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Exercising the SUT might require to call async methods of the SUT.
A current workaround is to wait on the Task returned by async methods, but that requires the specification author to pay attention on every single occurance.
Not waiting causes eventual exceptions to go unobserved and the specification might pass with a false positive
The text was updated successfully, but these errors were encountered:
Adapted the example specification name to match with that
(Having no tests is much worse than having tests that could be better organized
There are still some corner cases, but those will be really addressed after fixing issue #18)
This closes#4
This closes#3
Exercising the SUT might require to call async methods of the SUT.
A current workaround is to wait on the
Task
returned byasync
methods, but that requires the specification author to pay attention on every single occurance.Not waiting causes eventual exceptions to go unobserved and the specification might pass with a false positive
The text was updated successfully, but these errors were encountered: