You need to sign in to do that
Don't have an account?
jmburns
Help with trigger test code
Can some one please help me with test code for this trigger? I am in a crunch and am about to go live with a system and my developer is not available! I would appreciate any help.
trigger Set_Doc_Code on dsfs__DocuSign_Envelope_Recipient__c (after update) {
for (dsfs__DocuSign_Envelope_Recipient__c a : Trigger.new) {
a.dsfs__DSER_ContactID__c = a.Receiver__c; }}
JB
just type the following in the test class...
dsfs__DocuSign_Envelope_Recipient__c a = new dsfs__DocuSign_Envelope_Recipient__c();
insert a;
a.Receiver__c = [put in what ever be the appropriate value for this reciever field is];
update a;