I\'ve been running my Grails unit tests by typing grails test-app :unit, which runs all unit tests. Is there a way to specify a single test?
grails test-app :unit
Edit:<
This would work for sure, I use it every day
Following will run a single test
grails test-app :unit ExampleControllerTests.testName
Following will run all ExampleControllerTests
grails test-app :unit ExampleControllerTests