Details
Description
While it is a great enhancement that Grails 1.3.x can now run individual testMethod in a test class, sometimes the convention of forcing user to drop the Test(s) from the class name is still a little too magical for my taste, and presents a small challenge to integrating with other build systems.
For example,
> grails test-app Foo.test123
... this works
> grails test-app com.myco.Foo.test123
... this works
but
> grails test-app com.myco.FooTests.test123
... fails
But the fully qualified name of the actual class is indeed com.myco.FooTests !
In my humble opinion we need to support this case and thus I file it as a bug rather than an enhancement.
Putting to vote on dev list.