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
{{ message }}
This repository was archived by the owner on Jan 8, 2023. It is now read-only.
I'm working with a test running app where "FinishedLaunching()" has code similar to:
var nunit = new NUnit.Runner.App();
...
nunit.Options.TerminateAfterExecution = true;
...
LoadApplication(nunit);
return base.FinishedLaunching(app, options);
Along with terminating once the tests are done, I would also like some additional code to be executed. WillTerminate() does not seem to be guaranteed to be called and seems close to being deprecated, and I'm not sure if DidEnterBackground() is what I would want.
Was curious if there is anything obvious I'm missing. If not, would it make sense to allow a handler to be set on the test runner app to be called once all the tests are done running?
Thanks!
The text was updated successfully, but these errors were encountered:
bstadick
added a commit
to bstadick/nunit.xamarin
that referenced
this issue
Jan 23, 2022
I'm working with a test running app where "FinishedLaunching()" has code similar to:
Along with terminating once the tests are done, I would also like some additional code to be executed. WillTerminate() does not seem to be guaranteed to be called and seems close to being deprecated, and I'm not sure if DidEnterBackground() is what I would want.
Was curious if there is anything obvious I'm missing. If not, would it make sense to allow a handler to be set on the test runner app to be called once all the tests are done running?
Thanks!
The text was updated successfully, but these errors were encountered: