There is a presenter. Inside one of the methods, a Handler is created and launched, for the pending task.
public void myMethode() { ........... new Handler().postDelayed(new Runnable(){ run(){ ... } }, 2000 ) How to test run method? I get that he does not start in the test at all.
package-private- Alex Chermenin