Apexユニットテストでは、なぜMyConrtoller myCont = new MyController(StandardContoller);が実行されないのですか。現在のページを設定しますか?
たとえば、このページがある場合:
<apex:page standardController="DB_Object__c" extensions="MyExtension">
<apex:form id="detail_list">
<apex:detail />
<apex:actionStatus id="readStatus">
<apex:facet name="start">
Loading, please wait...
</apex:facet>
<apex:facet name="stop"><apex:outputPanel >
<apex:commandButton action="{!readData}"
value="Update Data"
rerender="detail_list"
status="readStatus"/>
{!remainingRecords}</apex:outputPanel>
</apex:facet>
</apex:actionStatus>
</apex:form>
</apex:page>
私の単体テストでこれが作成された場合:
DB_Object__c dbObj = new DB_Object__c();
dbObj.Name = 'test';
dbObj.Setting = 'aSetting';
insert dbObj;
Test.setCurrentPageReference(Page.Demo);
ApexPages.StandardController sc = new ApexPages.StandardController(dbObj);
MyExtension myExt = new MyExtension(sc);
なぜApexPages.currentPage().getParameters().get('id');
失敗するのですか?私がしなければなりません:
ApexPages.currentPage().getParameters().put('id',dbObj.id);
それが何もしない場合にdbObj
に渡すことのポイントは何ですか?StandardController
空白のオブジェクトを送信し、拡張機能がこのオブジェクトを使用するという意図はありますか?StandardControllersとユニットテストに関するドキュメントはあまりないようです...
ありがとう!