you could avoid the application method entirely an...
# doodle
n
you could avoid the application method entirely and just test starting with your Application class directly. this usually has all the dependencies injected, so you can provide them directly in your test or even mock some subset based on your tests. this is a very simple example of testing some of the Calculator example app using this method.
👍 1