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
lingannalinganna 

test coverage

Hi

Any one please help how to write testclass and execution with small exemple

thanks 

 

Regards

linganna

Navatar_DbSupNavatar_DbSup

Hi,

 

Test method is used for Unit testing of your code. You can either write the test method of class inside the class of you can create the separate class for writing the test method. Test method is the keyword by which sales force is identifying that this is your test method.

 

Try the below code as reference:

 

public class AssignLeads

{

 

       public static Boolean assignAlreadyCalled=FALSE;

     

       public static boolean assignAlreadyCalled()

       {

        return assignAlreadyCalled;

       }

     

       @future

       public static void assign(List<Id> lIds)

       {

       assignAlreadyCalled=TRUE;

       List<Lead> leads=[SELECT Id,LastModifiedBy.Alias FROM Lead WHERE Id IN: lIds];

       for(lead l:leads)

    {

       Database.DMLOptions dmo = new Database.DMLOptions();

       dmo.assignmentRuleHeader.useDefaultRule= true;

       l.setOptions(dmo);

       }

       update(leads);

       }

       public static testmethod void testCoverage()

       {

           list<id> lds=new list<id>();

           lead l=new lead(lastname='test',company='abc');

           insert l;

           lds.add(l.id);

           AssignLeads a=new AssignLeads();

           AssignLeads.assign(lds);

           AssignLeads.assignAlreadyCalled();     

       }

     

}

 

Did this answer your question? If not, let me know what didn't work, or if so, please mark it solved.