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
BrandonBBrandonB 

Test Class for Standard Wizard Function.

public class cvs2013 {

    public cvs2013(ApexPages.StandardController controller) {

    }

//Create Variables

Account account;
Contact contact;

//Create Pages

   public PageReference step1(){
      return Page.cv2013;
   }
   public PageReference step2(){
      return Page.cv2;
   }
   public PageReference step3(){
      return Page.cv3;
   }
   public PageReference step4(){
      return Page.cv4;
   }
   public PageReference step5(){
      return Page.cv5;
   }
   public PageReference step6(){
      return Page.cv6;
   }
   public PageReference step7(){
      return Page.cv7;
   }
   public PageReference step8(){
      return Page.cv8;
   }
   public PageReference step9(){
      return Page.cv9;
   }
   public PageReference step10(){
      return Page.cv10;
   }
    
    
}

Been struggling all day trying gain some traction with this test class.  

 

Any help would be greatly appreciated. 

 

Thank you so much in advance.