Introduction At my current client there was a request to create a sandbox version of our RESTful web services to allow users to call into the web services and test them out without changing with ...
When working with external services in a Grails project, say a service that uploads files to Amazon S3 or verifies bank account information, you’ll likely want to avoid accessing these services in standard integration and ...
When writing Grails unit tests it’s often very useful to use mock objects, especially when testing service calls from controllers. Grails includes built-in support for mock objects via mockFor. The mockFor mock objects support the ...