eclipse - run a single integration test from a test class -


i have tried run command given in documentation:

-dgrails.env=development test-app -integration myclass.\"create new test thingy search page\"

however, results in integration test running class, instead of running named test. have tried rename test no spaces, toi same result.

it same behavior in eclipse or command line (windows).

has else experienced issue, and, if so, did find workaround?

this facility not available yet. workaround, can use ignorerest annotation (indicates feature methods except ones carrying annotation should ignored), like

@ignorerest def "should test something"() {     ... }  

ref. run single spock test in grails


Comments

Popular posts from this blog

powershell Start-Process exit code -1073741502 when used with Credential from a windows service environment -

twig - Using Twigbridge in a Laravel 5.1 Package -

c# - LINQ join Entities from HashSet's, Join vs Dictionary vs HashSet performance -