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’ } }

...