@@ -156,6 +156,8 @@ public class GenerationTest {
156
156
157
157
assert reports. xml. enabled
158
158
assert reports. xml. destination. toString() == project. buildDir. absolutePath + " /reports/jacoco/${ flavor}${ buildType.capitalize()} /jacoco.xml"
159
+ assert reports. csv. enabled
160
+ assert reports. csv. destination. toString() == project. buildDir. absolutePath + " /reports/jacoco/${ flavor}${ buildType.capitalize()} /jacoco.csv"
159
161
assert reports. html. enabled
160
162
assert reports. html. destination. toString() == project. buildDir. absolutePath + " /reports/jacoco/${ flavor}${ buildType.capitalize()} "
161
163
@@ -196,6 +198,8 @@ public class GenerationTest {
196
198
197
199
assert reports. xml. enabled
198
200
assert reports. xml. destination. toString() == project. buildDir. absolutePath + ' /reports/jacoco/debug/jacoco.xml'
201
+ assert reports. csv. enabled
202
+ assert reports. csv. destination. toString() == project. buildDir. absolutePath + ' /reports/jacoco/debug/jacoco.csv'
199
203
assert reports. html. enabled
200
204
assert reports. html. destination. toString() == project. buildDir. absolutePath + ' /reports/jacoco/debug'
201
205
@@ -230,6 +234,8 @@ public class GenerationTest {
230
234
231
235
assert reports. xml. enabled
232
236
assert reports. xml. destination. toString() == project. buildDir. absolutePath + ' /reports/jacoco/release/jacoco.xml'
237
+ assert reports. csv. enabled
238
+ assert reports. csv. destination. toString() == project. buildDir. absolutePath + ' /reports/jacoco/release/jacoco.csv'
233
239
assert reports. html. enabled
234
240
assert reports. html. destination. toString() == project. buildDir. absolutePath + ' /reports/jacoco/release'
235
241
@@ -270,6 +276,7 @@ public class GenerationTest {
270
276
assert contentEquals(classDirectories. includes, [" **/classes/**" ])
271
277
272
278
assert reports. xml. enabled
279
+ assert reports. csv. enabled
273
280
assert reports. html. enabled
274
281
275
282
assert taskDependsOn(task, ' test' )
0 commit comments