I have the following code in my activity:
@Override
protected void onResume() {
super.onResume();
initLoaders();
}
How can I test this code using Robotium/Espresso or may be any other testing tools? I want to verify that initLoaders
gets called every time the activity is resumed (in case I accidentally delete this code later, for example).