[-InsertNameHere-]
β
Async void method testing in xUnit
It isnt what im testing but i get how it could look like that. So my codebase currently follows the MVP pattern. When Submit is clicked in the view, an event is invoked that is then subscribed to and handled by HandleSubmit_Clicked. I can just extract the code like this:
the async Task should be testable but it looks messy. If i try to make the handleSubmit itself async Task, i get the error "'Task DataFormPresenterTemplate.HandleSubmit_Clicked(object?, EventArgs)' has the wrong return type". Hence why i want to do a bit of research.
30 replies