Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  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 Dont instanc

  8. Don't instantiate objects in a method that would be need to when testing that function works(tight coupling)


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)

Interpreting the coveralls report

The below is a report for the coveralls that is on the PR after coveralls runs sucessfully. The report is usually edited after new commits

Image Added

From the above

Info

19 of 520 (80.58%) changed or added relevant lines in 17 files are covered.

( This show % percentage of new code that has been tested) This should be used to benchmark if the PR has meet the requirement for the project

Info

Overall coverage increased (+1.6%) to 60.157%

This shows the overall change to the test coverage

...

The above shows 3 main metrics

  • Covered Lines (Lines that have been tested in this PR)

  • Changed/Added Lines (The number of lines that was changed on the PR)

  • % (The % of lines that the class has been tested on this PR)

    On clicking each line above one is able to know which lines have not been tested. They will he highlighted in read and tagged as new as shown below

    Image Added