我是 Apex 开发的新手。
我想为我的 Apex 触发器编写一个 TestClass。
我正在与您分享我的代码。
trigger UpdateContact on Account (after Insert) {
List <Contact> contactList=new List<Contact>();
for(Account a:Trigger.new)
{
Contact c=new Contact(LastName=a.Name, AccountId=a.id);
contactList.add(c);
}
insert contactList;
}