function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
Vishal GuptaVishal Gupta 

How to cover the code coverage??

I have a very less idea of how to make the code coverage.So could anybody guide me through it once so that i get some idea.

 

This class is used as an extension in a VF page. I am fetching the ID of  a record and then navigating to different page on a button click passing that retrieved ID in the next page URL.

 

public class PortExt
{
String currentportfolioId;


public PortExt(ApexPages.StandardController controller)
{
currentportfolioId=ApexPages.currentPage().getParameters().get('id');
}

public Pagereference testRedirect()
{
Pagereference p=new Pagereference('/apex/saveportfolio?id='+ currentportfolioId);
p.setredirect(true);
return p;
}
}

RajiiiRajiii

Hi,

  It may help you, You should write below code with in the testmethod.

 

PortExt test1 = new PortExt();

Apexpages.currentpage().getparameters().put('id','id_value_here');

test1. testRedirect();