我是SFDC的新手。如何使用Apex
创建/更新潜在客户?
我试过了;
@isTest
private class TestClass {
static testMethod void testLogic() {
//Create new lead
// insert new Lead(Company = 'Lead Company', FirstName = 'firstname', LastName = 'lastname', Email = 'some@gmail.com');
}
}
测试用例成功但我在点击Leads
时看不到SFDC用户界面上的记录。请帮帮我!
答案 0 :(得分:0)
运行测试方法时,对DB的所有写入都不会影响当前的DB(除非指定您无法读取当前的DB)。
在执行匿名中运行以下行将创建潜在客户:
insert new Lead(Company = 'Lead Company', FirstName = 'firstname', LastName = 'lastname', Email = 'some@gmail.com');
或者只是创建一个常规类并从VF调用它的方法。