I am testing a service which is using config attributes and concatenates it to a string, like that:
GrailsConfig.config.test.directory + System.getProperty('file.separator')
+ <filename>
When running the test for the above method containing the above code I receive the following error:
groovy.lang.MissingMethodException: No signature of method:
groovy.util.ConfigObject.plus() is applicable for argument types:
(java.lang.String) values: [\]
Why is the plus operator not available in my integration (or unit) test?!
Any help appreciated
Jonas
I guess
GrailsConfig.config.test.directory
should return a String, but it's returning aConfigObject
instead (which doesn't overload the + operator). I've never tried usingGrailsConfig
in an integration test, so I don't know if this code is expected to work.A better approach might be to mock the configuration values using mockConfig instead.