Hi Guys,
I'm working on a recursive method that should allow me to set the testers for a
Test Group. A test group consists of the tester for the group and a map of test groups. How do I set the tester and then set the map's testers.
I guess I'm confused of how to do a recursive method to set the testers
So here's how structure is organized:
So first you have a selected test plan
Then a test plan has a list of test groups
Each test group can have sub test groups
Now each test group has a tester and a map of test groups.
It's sort of confusing, isn't it?
Currently I'm getting a stack overflow error when I call the method recursively in a for loop that iterates the size of the map of groups of any given test group.