我有一个顶点类,它插入了contacts.i为它传递了一个测试类,但代码覆盖率为零。有人建议我错过了什么? 考试类: @isTest 公共类TestReferalAccessclass { static testMethod void ReferalAccessclassMethod() { Test.StartTest(); 联系c = new联系人(FirstName =' fname',LastName =' lname',Email =' email@gmail.com' ;, Phone =' 9743800309& #39); 插入c; System.AssertNotEquals(Null,c.Id); Test.StopTest();
}
}
apex class:
public without sharing class ReferalAccessclass {
public String inputID{get; set;}
public String firstName{get; set;}
public String lastName{get; set;}
public String email{get; set;}
public String phone{get; set;}
public Decimal exp{get; set;}
public String location{get; set;}
public contact con{get;set;}
Public attachment objAttachment{get; set;}
public ReferalAccessclass(ApexPages.StandardController controller)
{
objAttachment = new Attachment();
}
public void saveInformation()
{
try{
IF(inputID != 'NULL'){
con = [SELECT ID,Name,FirstName,LastName,Email,Phone,Years_of_Experience__c,Location__c FROM Contact where ID =: inputID ];
con.FirstName = firstName;
con.LastName = lastName;
con.Email = email;
con.Phone = phone;
}
update con;
objAttachment.ParentId = con.id;
Insert objAttachment;
}
catch(exception e){}
ApexPages.Message myMsg = new ApexPages.Message(ApexPages.Severity.FATAL, 'Thank you for your valuable response');
//返回null;
}
}
答案 0 :(得分:0)
您没有从测试类中调用您的实际类。这就是为什么它没有提供代码覆盖率。试试这个测试课程。
@isTest public class TestReferalAccessclass {
static testMethod void ReferalAccessclassMethod() {
Contact c=new Contact(
FirstName='fname',
LastName = 'lname',
Email = 'email@gmail.com',
Phone = '9743800309');
insert c;
Test.StartTest();
System.AssertNotEquals(Null, c.Id);
ApexPages.StandardController sc = new ApexPages.StandardController(c);
ReferalAccessclass refClass = new ReferalAccessclass(sc);
refClass.inputID = c.id;
refClass.firstName = c.id;
refClass.lastName = c.id;
refClass.email = c.id;
refClass.phone = c.id;
refClass.con = c;
refClass.saveInformation();
Test.StopTest();
}
}