Learn Java for Web Development

(Tina Meador) #1
CHAPTER 7: Rapid Web Development with Grails 317

Testing the Controller

Listing 7-5 illustrates the BookControllerTests test generated by Grails.


Listing 7-5. BookControllerTests Generated by Grails


package bookstore


import grails.test.mixin.
import org.junit.


/**



  • See the API for {@link grails.test.mixin.web.ControllerUnitTestMixin} for usage instructions
    */
    @TestFor(BookController)
    class BookControllerTests {


void testSomething() {
fail "Implement me"
}
}


Figure 7-15. Simple textual response

Free download pdf