如何从顶点测试类引用PageReference方法

时间:2015-07-16 14:46:16

标签: unit-testing testing salesforce visualforce force.com

我是apex的新手,我创建了一个按钮,通过visual force页面调用apex类。 这是我的视觉力页面代码。

<apex:page standardController="Opportunity" 
extensions="myclass" 
action="{!autoRun}"> 
</apex:page>

这是我的顶级课程。

public class myclass {
    private final Opportunity o;
    String tmp;

   public myclass(ApexPages.StandardController stdController) {
        this.o = (Opportunity)stdController.getRecord();
    }
    public PageReference autoRun() { 
        String theId = ApexPages.currentPage().getParameters().get('id');

   for (Opportunity o:[select id, name, AccountId,  from Opportunity where id =:theId]) {

                 //Create the Order
                    Order odr = new Order(  
                    OpportunityId=o.id
                    ,AccountId = o.AccountId
                    ,Name = o.Name
                    ,EffectiveDate=Date.today()
                    ,Status='Draft'
                    );
                insert odr;
                tmp=odr.id;             
              }                  
        PageReference pageRef = new PageReference('/' + tmp);  
        pageRef.setRedirect(true);
        return pageRef;
      }
}

我想创建测试类。 我不知道如何从测试类中引用PageReference autoRun()方法。如果有人可以告诉我这个顶点类的测试类,那么伙计们需要帮助。

1 个答案:

答案 0 :(得分:2)

您需要为插入的商机配置StandardController。然后在调用要测试的方法之前传递StandardController以传递给构造函数。

E.g。

public static testMethod void testAutoRun() {

    Opportunity o = new Opportunity();
    // TODO: Populate required Opportunity fields here
    insert o;

    PageReference pref = Page.YourVisualforcePage;
    pref.getParameters().put('id', o.id);
    Test.setCurrentPage(pref);

    ApexPages.StandardController sc = new ApexPages.StandardController(o);

    myclass mc = new myclass(sc);
    PageReference result = mc.autoRun();
    System.assertNotEquals(null, result);

}