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:
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.



Comments
Post a Comment