测试在 Salesforce 中返回 PageReference 的方法
我在控制器中有一个方法
public PageReference add() {
insert technology;
return null;
}
technology
是一个自定义对象。它有自己的getter和setter。我如何测试这个方法
I have a method in the controller
public PageReference add() {
insert technology;
return null;
}
technology
is a custom object .It has its own getters and setters.How do I test this method
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在测试类中,您必须初始化控制器并调用此方法:
希望有帮助。
In test class You had to initialize Your controler and call this method:
Hope that helps.