You need to sign in to do that
Don't have an account?

test code
Hi friends,
can any one post test code for the below trigger.
trigger trg5 on Opportunity (before insert)
{
for(opportunity o:trigger.new)
{
if(o.amount>2500000)
o.adderror('not inserted');
}
}
Regards,
Srikanth
I've noticed you've asked several times for test code now. It's worth noting that there is documentation on how to write test code.