Visualforce页面-Apex测试类-PageReference

时间:2018-08-08 13:46:48

标签: visualforce apex test-class

我为此创建了顶点类:

public without sharing class VFC44_CreateCase_Communitypage {
    public PageReference yourActionFromController() {
        PageReference yourPage = new PageReference('/apex/H3EditCase');
        yourPage.getParameters().put('key','value');
        yourPage.setRedirect(true); 
        return yourPage;
    }
}

我想创建测试类。 有人可以帮我吗?

0 个答案:

没有答案