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
padmini sspadmini ss 

test calss for handling recurssive triger

This is my Class to handel recurssive trigger, how to cover the TEST Coverage..??
global class HandelRecurssiveTriggerOppLineItem{
global static boolean flag=false;
}
pls help me out..
 
Best Answer chosen by padmini ss
Jagan ReddyJagan Reddy

Hey Padmini,

you can place this and test it.

@isTest
public class HandelRecurssiveTriggerOppLineItem_Test
{
    static testMethod void testrevursion()
    {
        HandelRecurssiveTriggerOppLineItem rec=new HandelRecurssiveTriggerOppLineItem();
    }
}

Thanks,
jagan
jagansfdc@outlook.com