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
JaanuJaanu 

0% code coverage on trigger and unable to deploy the changes.. pls help. URGENT

I have a trigger which will insert the record into custom object. This trigger is on event object. So, whenever there is a record in the event object, this trigger will fire. In the trigger logic, I am inserting the record into a custom object. The following test calss I have.. when I run the test, the trigger is getting 0% code coverage... please help URGENT.

@isTest
public class TESTEventTrigger_TEST {
    static testMethod void testMethod1()
    {
        test.startTest();
        try
        {
            for(Integer i=0 ;i <200;i++)
        {
            Integer upload = 0;
            if (upload == 0) {
                TEST_Record__c p = new TEST_Record__c(
                                                             First_Name__c = 'acct.First   Name' +i,
                                                             Last_Name__c = 'acct.Last   Name',
                                                    

                );
                insert p;
                upload = 1;
                Case cse = New Case();
                cse.Name = 'name only';
                insert cse;
            }
            }
        }
        Catch(Exception ee)
        {
        }
        test.stopTest();

    }
}
 
Raj VakatiRaj Vakati
Can u please check the test class is running succesfully or not