测试在 Salesforce 中返回 PageReference 的方法

发布于 2025-01-02 02:44:28 字数 220 浏览 1 评论 0原文

我在控制器中有一个方法

    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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

顾挽 2025-01-09 02:44:28
 public static testMethod void testMyController() {


   PageReference pageRef = Page.yourPageName;

   Test.setCurrentPage(pageRef);

   MyController controller = new MyController();
   controller.add();

}
 public static testMethod void testMyController() {


   PageReference pageRef = Page.yourPageName;

   Test.setCurrentPage(pageRef);

   MyController controller = new MyController();
   controller.add();

}
九八野马 2025-01-09 02:44:28

在测试类中,您必须初始化控制器并调用此方法:

static testMethod void test(){
    YourController contr = new YourController();
    contr.add();
}

希望有帮助。

In test class You had to initialize Your controler and call this method:

static testMethod void test(){
    YourController contr = new YourController();
    contr.add();
}

Hope that helps.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文