Home > Enterprise >  Android Unit Test get code coverage that how much covered the working functions from unit testing
Android Unit Test get code coverage that how much covered the working functions from unit testing

Time:10-30

There is an in-build way to get code coverage by using "createDebugCoverageReport". but that's NOT I want. I just want something like how much I covered my functions of the project from Unit test.

CodePudding user response:

You should setup JaCoCo to get coverage unit test Prefer: setup-jacoco-android or jacoco

  • Related