andreluizreis
6/20/2017 - 10:11 PM

Another wait thread - Font: https://stackoverflow.com/questions/2321829/android-asynctask-testing-with-android-test-framework

public void testSomething(){
  final CountDownLatch signal = new CountDownLatch(1);
  Service.doSomething(new Callback() {

    @Override
    public void onResponse(){
      // test response data
      // assertEquals(..
      // assertTrue(..
      signal.countDown();// notify the count down latch
    }
  
  });
  signal.await();// wait for callback
}