我编写了一个 Apex 调度程序,它会在员工生日前 2 天向经理发送电子邮件通知。
我已经在沙盒中对其进行了测试,我已经准备好投入生产了。但是,我无法使用我的测试方法获得代码覆盖率。
我的 Apex 调度程序类使用 SOQL 语句来识别帐户名称为“我们的公司”并且在 2 天内过生日的联系人。
我在我的测试方法中创建了一个帐户和联系人记录。
我需要将我的帐户和联系人记录链接/关联在一起。(联系人是为我创建的账户工作的。我知道它与ID有关。你不能写accountId。
我想我需要创建一个帐户变量并将其分配给contactID ...我尝试了代码示例,但它们不起作用。Salesforce 认为我正在尝试编写您无法执行的联系人 ID。再具体一点:
Contact testContact = new Contact();
testContact.firstName='Jack';
testContact.lastName='Dell';
AccountID = testAccount.id;
如何创建帐户变量?
另一个问题是调用我的sendBirthdayEmail();
方法。
编写 testContact.sendBirthdayEmail(); 不调用我的电子邮件方法。相反,我收到一条错误消息“错误:编译错误:SObject 联系人的无效字段 ContactID”。
为什么我的测试方法不能识别我的 sendBirthdayEmail 方法?测试方法不理解我班上的其他方法吗?
global class BirthdayName implements Schedulable{
global void execute (SchedulableContext ctx)
{
sendBirthdayEmail();
}
public void sendBirthdayEmail()
{
for(Contact con : [SELECT name, Id, Birthdate FROM Contact WHERE Next_Birthday__c = : system.Today().addDays(2) AND Account.Name = 'Our Company'])
{
String conId = con.Id;
String conName = con.name;
Messaging.SingleEmailMessage mail = new Messaging.SingleEmailMessage();
mail.setTargetObjectId('005J0000000JWYx');
mail.setsubject('Birthday Reminder');
mail.setHtmlBody('This is a scheduler-generated email to notify you that the birthday of Name: <b> ' + con.name + ' </b> is in two days. Birthdate of: ' + con.Birthdate + '. Please wish them a happy Birthday.');
mail.setSaveAsActivity(false);
Messaging.sendEmail(new Messaging.SingleEmailMessage[] {mail });
}
}
static testMethod void myTestBirthday() {
//create the required test data needed for the test scenario
//In this case, I need to create a new contact, with the account name of Our Company and has a birthday 2 days away
Account testAccount = new Account(name='Our Company');
insert testAccount;
// creating new contact
Contact testContact = new Contact();
testContact.firstName='Jack';
testContact.lastName='Dell';
// TRYING to make this contact associated with the account by setting the account id of the account I just created to the contact
AccountID = testAccount.id;
// inserting test contact
insert testContact;
testContact.birthdate=system.Today().addDays(2);
update testContact;
testContact.sendBirthdayEmail();
}
}
请帮助我,我已经阅读了文档并搜索了留言板,但我仍然卡住了。谢谢你的帮助!