Skip to main content

Android : testing a service



we are actually developping an audio service (in the android sense of the term) and we have quite of lot of tests to cover many aspects of our APIs. But we are actually wondering for good things to do to test a service efficiently.





So this question is quite open: how would you test an android service ?





We are currently using JUnit + EasyMock on test both on real devices and Continous Integration server (via an emulator).





Any suggestion is welcome, thx in advance.





PS : we have been searching SOF for similar threads but we just found a few cues in those depleted threads :




Comments

  1. If you wanna test service's method you have to start this service. You can check if service is running:

    private boolean isMyServiceRunning() {
    ActivityManager manager = (ActivityManager) getSystemService(ACTIVITY_SERVICE);
    for (RunningServiceInfo service : manager.getRunningServices(Integer.MAX_VALUE)) {
    if ("com.example.MyService".equals(service.service.getClassName())) {
    return true;
    }
    }
    return false;
    }


    And start it when necessary.

    ReplyDelete

Post a Comment

Popular posts from this blog

Wildcards in a hosts file

I want to setup my local development machine so that any requests for *.local are redirected to localhost . The idea is that as I develop multiple sites, I can just add vhosts to Apache called site1.local , site2.local etc, and have them all resolve to localhost , while Apache serves a different site accordingly.