You need to sign in to do that
Don't have an account?
umesh atry
How do i achieve following line into Test Class
i want to coverage following lines to coverage into Test class.
Id= Apexpages.currentPage().getParameters().get('delId2');
productId= Apexpages.currentPage().getParameters().get('productId2');
Thanks in Advance.
Id= Apexpages.currentPage().getParameters().get('delId2');
productId= Apexpages.currentPage().getParameters().get('productId2');
Thanks in Advance.
There are two ways
1. here we are adding parameter.
2. by doing this we are exciptly providing parameter with class instance and skipping these steps.
you can cover use both the method. Please mark it as a best answer if it really help
Sameer B.
All Answers
There are two ways
1. here we are adding parameter.
2. by doing this we are exciptly providing parameter with class instance and skipping these steps.
you can cover use both the method. Please mark it as a best answer if it really help
Sameer B.
Really, Your help is Excellent.
Thank You.