Hi Tom, > - only execute a single test: > gradle test(test.XXTest) > - execute all tests extending a base class: > gradle test(test.AbtractXXXTest+) -- don't know if a plus sign is best > perhaps a minus sign is more appropriate > or > gradle test(test.AbstractXXXTest-) > - execute all tests in a package: > gradle test(org.gradle.*) > gradle test(org.gradle.**) -- including contained packages > or a combination of them separated by comma's: > gradle test(test.XXTest,test.YYTest,org.gradle.**) I'm a TestNG user, and I'd be interested in telling Gradle to run specific groups of tests (defined using TestNG annotations). Will it also be possible with Gradle ?
Or more generally, I'd like to treat Gradle as a proxy, that would pass some parameters to the testing framework below (in my case TestNG). -- best regards Tomek Kaczanowski http://kaczanowscy.pl/tomek --------------------------------------------------------------------- To unsubscribe from this list, please visit: http://xircles.codehaus.org/manage_email
