Please I am newbie to salesforce and I want to make unit testing forthis method:
public PageReference method1(){
PageReference p = new PageReference ('/hello');
p.setRedirect(true);
p.getParameters().put('id',id);
if(code!=null){
p.getParameters().put('ld',ld);
p.getParameters().put('ph',ph);
}
return p;
}
Thank you
You really need to provide your whole apex class and visualforce page to ensure that someone answering your question can do so, but here's a generic stab at it: