You need to sign in to do that
Don't have an account?
sangeeta.marathe@Futurewise.co
apex code
String parentId=Apexpages.currentPage().getParameters().get('entityId');
String childId=Apexpages.currentPage().getParameters().get('fentityId');
i am not able to undersatnd y r v fetching parentID and childID .
I my test class i am using only 1 ID
Sangeeta
Can you give a bit more background as to what the page is meant to be doing? You have just posted up some generic code which has no contextual meaning.
Paul
It very much depends on what the code you are testing is doing.
The controller in question clearly expects there to be two parameters in the URL. Presumably it is doing something with these ids (e.g. querying the objects with those id from the database?).
You really need to be speaking to whoever wrote the original code to understand what their code is intended to do - we may be able to make suggestions, but that will be based on assumptions that we make while reading it.