android - How to create JaCoCo xml report and xml summary for Microsoft Visual Studio Team? -


i need switch on jacoco coverage reports in microsoft visual studio team.

i can see form:

enter image description here

so, need summary file. how can create it?
true need create report in xml format locally?

i trying create reports, have problem.
project use gradle, add in gradle.build:

apply plugin: "jacoco" 

and:

buildtypes {     release {         minifyenabled false         proguardfiles getdefaultproguardfile('proguard-android.txt'), 'proguard-rules.pro'     }     debug {         testcoverageenabled true     } } 

but can't see reports jacoco.
can create full jacoco report android studio, it's html.

how can create summary microsoft visual studio team?

for jacoco configuration, can refer code sample here: gradle example. have tested it, can generated xml report correctly.

and can run build , publish code coverage result vsts: enter image description here

published result in vsts: enter image description here


Comments

Popular posts from this blog

neo4j - finding mutual friends in a cypher statement starting with three or more persons -

php - How to remove letter in front of the word laravel -

minify - Minimizing css files -