Skip to content

Instantly share code, notes, and snippets.

@jaspreetsidhu
Created September 14, 2019 20:20
Show Gist options
  • Save jaspreetsidhu/020cb6e11fefd8c1280b44cb2e00e38d to your computer and use it in GitHub Desktop.
Save jaspreetsidhu/020cb6e11fefd8c1280b44cb2e00e38d to your computer and use it in GitHub Desktop.
@isTest
public class TestRestrictContactByName{
@isTest static void testRestrictContactByName () {
Contact c = new Contact(LastName='INVALIDNAME');
try{
insert c;
}
catch(DMLException e){
System.assert(e.getMessage().contains('The Last Name "'+c.LastName+'" is not allowed for DML'));
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment