Advertisement
Guest User

Untitled

a guest
Sep 21st, 2017
51
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. if(Prescription__c.field1__c <> Contact.field1__c){
  2. result = true;
  3. break;
  4. }
  5.  
  6. Prescription__c.field1__c = 'new value';
  7. Contact.field1__c = 'old value';
  8. System.assertEquals(true, RevisionRx(contact, prescription);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement