liuyn
2024-03-11 a87f1c3df03078814ee97ad0c8ac200a232419e9
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
@isTest
private class PagePlusTest {
    static testMethod void PagePlus() {
        new PagePlus(2,20);           // エラーでないことを確認
    }
    // static testMethod void PagePlus(2,20) {
    //     new PagePlus();           // エラーでないことを確認
    // }
    static testMethod void testMethod1() {
        PagePlus.ControllerUtil();
        // Daily_Report__c dr = new Daily_Report__c();
     //    dr.Reported_Date__c = Date.today();
     //    dr.Reporter__c = Userinfo.getUserId();
     //    insert dr;
     //    List<Daily_Report__c> dList = [select Id from Daily_Report__c];
     //    String a = PagePlus.getPage();
     //    PagePlus.getRecords();
     //    PagePlus.setRecords(dList);
     //    PagePlus.getTotal();
     //    PagePlus.setTotal(1);
    }
}