Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 3 Next »

Its ideal to maintain a benchmark for coverage within the code base. Coverage is measured by classes, functions and line covered. We should aim for > 80% coverage.

We currently use MVP as the design pattern which makes its easy to test and also better structured code overall.

Testing Tools available for Android

  1. JUnit (main testing framework in Java ecosystem)

  2. Mockito (used to mock objects)

  3. Powermock (extension of mockito, adds mocking static variables and functions )

  4. Roboelectric (provides android runtime on jvm for unit testing android dependancies)

AndroidJUnit and Espresso (instrumented tests)


Testing Tools available for OpenSRP server

  1. (1-3 ) above on the android section

  2. SpringJUnit4ClassRunner (Used to bootsrap spring IOC container for testing )


Important points to remember 

  1. Its important to consider the purpose and stengths of each tool for testing. Consider the tool on frameword from above list starting from the top.

  2. Dont mix powermock with Roboelectric or AndroidJUnit/Espresso. Tests will not work since powemock affects classloading

  3. Dont Prepare a class for Test using the powermock if the same class is under test. Jacoco will not be able to report coverage for such tests

  4. Write tests when writing the code 

  5. If (4) is not possible the write the code keeping in mind that it needs to be tested

  6. Mockito can be used will the other testing tools

  7. Avoid static methods if they need to have state or call instances of other classes which track state 

  8. Dont instanc


MVP design Pattern

  1. Model (includes Interacators) Use JUnit and Mockito

  2. Presenter

    1. If the presenter have any android dependencies then use Robolectric +Mockito

    2. If the presenter does not have any android dependencies use JUnit and Mockito

  3. Views Use Robolectric +Mockito

  4. Utils and Helpers (JUnit +Mockito)













  • No labels