@isTest // test for the tgrPopulateActivityDate triggers private class tstPopulateFavoriteBaseballTeam { static testMethod void test() { // create dummy Contact Contact c = new Contact(Favorite_Baseball_Team__c='Cubs;Mets;White Sox;Yankees', LastName='Trigger Test'); insert c; // determine Account.Name String s = [SELECT Favorite_Baseball_Team_Text__c FROM Contact WHERE Id = :c.Id LIMIT 1].Favorite_Baseball_Team_Text__c; // TEST INSERT LOGIC System.assert(s == c.Favorite_Baseball_Team__c); } }