0 votes
in Gradle by

If you use the gradle-testsets-plugin how do you add an integrationTest sourceset in gradle?

A. testSets { integrationTest { dirName=’myDir’ } }

B. testSets { dirName=’myDir’}

C. testSets { integrationTest = ‘myDir’ }

D. integrationTest { dirName=’myDir’}

1 Answer

0 votes
by

Ans: A. testSets { integrationTest { dirName=’myDir’ } }

Related questions

0 votes
asked Apr 22, 2020 in Gradle by Hodge
0 votes
asked Apr 14, 2020 in Gradle by Robindeniel
...