You need to sign in to do that
Don't have an account?
How can i cover a boolean in test class
Dear friends,
How can i cover following line in test class.
Public Boolean isShowOpp {get;set;} // This line is not covering in the test class.
Thanks in advance.
Regards,
Soundar Raj
How can i cover following line in test class.
Public Boolean isShowOpp {get;set;} // This line is not covering in the test class.
Thanks in advance.
Regards,
Soundar Raj
ClassName cls = New ClassName();
cls.fieldName=true;
it's coverd in test class...
Regards,
Soundar raj.