February 2013
Intermediate to advanced
272 pages
5h 45m
English
| Recipe 19 | Test a Grails App Using grails-cucumber |
You’re writing a web app using the Grails framework, and you want to use Cucumber to test it.
Grails,[119] a web framework written in the Groovy language for the JVM
grails-cucumber,[120] a testing plug-in that adds Cucumber support to Grails
Cucumber-JVM,[121] the pure-Java implementation of Cucumber that makes grails-cucumber possible
Groovy is a programming language that aims to bring some of Ruby’s expressiveness to the Java runtime. The syntax is quite flexible; you can often paste Java code directly into a .groovy file and then gradually add Groovy features as you go along.
Grails is a Rails-like web framework written in Groovy. In this recipe, we’re going to build ...