Hi,
I have got a method in
java file like this:
public boolean inserDB(
String name, String Address){
// Gets the DB connection
// insers one record into Database and returns true/false
return boolean;
}
How can i write a
test scrpt in StrutsTestCase?
We have got many similar methods, to perform all sorts of DB operations.
Now we need to write automated unit test cases. We thought of using StutsTestCase frame work.
Can any one help me.
Thanks,
Sripathi.