I have a heavily dependency injected (dagger2) application. I would like to run an espresso test without having the test navigate through the whole application
there is no value set in
LoginStateManager
so when you build the component you get both TelePresenter Dependency and LoginStateManager dependency but no values set in member variables of the both .So i think you need to set the values of member variables before accessing them.
getBaseLoginResponse().getAccessToken())
the above line of code is giving you null because you haven't set the value .So before accessing it you need to set the values first