0

我正在尝试为控制器扩展编写一个测试类。这个控制器扩展中有另一个类。这个类有几个方法。

public class Extension_Account
{
    public Extension_Account(ApexPages.StandardController controller)
    {
      public class Class1
      {
       public Class1()
       {
        / * code here*/
        }
        public String getMethod()
        {
         /* code here */
          }
       }
    }
}

如何在我的测试类中访问方法 getMethod?

在我的测试类中,我能够访问 Class1 的构造函数,但不确定如何使用其他方法

public with sharing class TestExtension_Account

{
    static testMethod void TestPrint() 
    {
        Account a = new Account();
        //a.Name='Test Account';
        a.FirstName='TestFirst Name';
        a.LastName='Test Last Name';
        a.BillingStreet='Test billing Street';
        a.BillingCity='Test Billing City';
        a.BillingState='Test Billing State';
        a.BillingCountry='Test Billing country';
        a.BillingPostalCode='Test PostCode';
        insert a;



        PageReference pageRef = Page.printaddressaccount;
        pageRef .getParameters().put('id',a.id);
        Test.setCurrentPageReference(pageRef);
        ApexPages.StandardController controller = new ApexPages.StandardController(a); 
        Extension_Account ae = new Extension_Account(controller);
        ae.getClass1();
        ae.getMethod()// gives a compiler error Method does not exist or incorrect signature
}
}
4

1 回答 1

0

如果您的扩展类有一个返回 Class1 实例的 getClass1() 方法,那么您可以从该实例访问这些方法,例如ae.getClass1().getMethod()

于 2011-09-09T01:46:00.580 回答