I am attempting to add Gradle (1.4) to an existing project that has multiple test suites. The standard unit test located in src/test/java ran successfully, but
src/test/java
Another way:
test { exclude '**/*IntegrationTest*' ... } task testIntegration(type: Test) { include '**/*IntegrationTest*' ... }