| Author |
Mocking grailsApplication in Integration testCases
|
Amit Sharma
Ranch Hand
Joined: Nov 22, 2005
Posts: 87
|
|
Hi
I have one service class which is using grailsApplication to get some value from properties file.But while writing testcase for it , it is giving null pointer exception for grailsApplication . I have googled and found some ways but they are not working in my code. Please suggest some way to implement this.
|
Amit Sharma SCJP 1.4, SCWCD 5, OCUP-100(UML)
|
 |
Gregg Bolinger
Ranch Hand
Joined: Jul 11, 2001
Posts: 15230
|
|
|
grailsApplication only gets wired up for Integration tests. The simplest solution is to switch your test from a unit test to an integration test. Which makes sense, when testing a service, in my opinion.
|
 |
Gregg Bolinger
Ranch Hand
Joined: Jul 11, 2001
Posts: 15230
|
|
I also found this which looks to solve your problem...
http://old.nabble.com/Testing-taglibs:-mocking-grailsApplication.config-td21309687.html
In your case, something like...
MyServiceClass.metaClass.getGrailsApplication = {-> return [config: [:]] }
|
 |
Amit Sharma
Ranch Hand
Joined: Nov 22, 2005
Posts: 87
|
|
Hi Gregg
I am writing integration testcases and its still giving null pointer exception.
Thanks and Regards
Amit
|
 |
 |
|
|
subject: Mocking grailsApplication in Integration testCases
|
|
|