Hi,
below code snippet is my
unit test case code for groovy class
public void testUserList(){
setup()
def userList = [['name':'12345678', 'actual_name':'Paul allan']]
List<User> tempList = new ArrayList<User>()
mocksql.demand.eachrow{
def query, closure ->
userList.each(closure)
}
mocksql.use{
apply1 = new apply1(<connection
string goes here>,
<username>, <password>,
<schemaname>,
"oracle.jdbc.driver.OracleDriver")
tempList=apply1.getapply1UserList()
}
}
}
while running this test case in Eclipse Luna using
maven build getting below error
Errors:
[ERROR] com.double.example.application.appMockTest#testUserList MissingMethodException
any one of you could please throw some light on this. how to fix.
Note: saw few online discussions but nothing worked out.
Thanks in advance.