As the Gaelyk site says, “Gaelyk is a lightweight Groovy toolkit for Google App Engine Java.” Gaelyk makes it easier and Groovier to play with datastore entities, allowing the following syntax for creating and saving Entity: import com.google.appengine.api.datastore.Entity //create the entity Entity student = new Entity(“person”) //set and populate properties student["name"] = “John Doe” student["grade"] [...]
Tag Archives: groovy
Canoo Webtest, Groovy, and Maintaining Session with Tests
August 21, 2009 – 1:21 pm
The open source Canoo Webtest is a powerful tool for automating functional and regression tests for your web application. You can script your test steps in XML or in Groovy (or a mix of both), and you can build a comprehensive library of test steps that you combine and reorder into your tests. The documentation [...]