Pages

Showing posts with label gradle. Show all posts
Showing posts with label gradle. Show all posts

Saturday, 4 December 2021

Gradle

Gradle commands

you could specify a single test with: 

gradle clean test --tests "org.gradle.MyFirstTest.testA"

Or all tests in a class: 
gradle clean test --tests "org.gradle.MyFirstTest" 

Or all tests in a package: 

gradle clean test --tests "org.gradle.*"