add example how to run TestNG test with Gradle on Groovy code

This commit is contained in:
Juraj Michalek
2014-05-19 08:01:19 +02:00
parent f2ebeb16d7
commit 72f5baa4fd
4 changed files with 41 additions and 0 deletions
+9
View File
@@ -0,0 +1,9 @@
apply plugin: 'groovy'
dependencies {
compile gradleApi()
}
test {
useTestNG()
}