高章伟
2022-02-18 8b5f4c6c281cfa548f92de52c8021e37aa81901e
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
@isTest
private class AccountQualifyAlertControllerTest {
    
    @isTest static void test_method_one() {
        // Implement test code
        List<RecordType> rectCo = [select Id from RecordType where IsActive = true and SobjectType = 'Account' and Name = '病院'];
        if (rectCo.size() == 0) {
            throw new ControllerUtil.myException('not found 病院 recodetype');
        }
        // insert
        Account hospital = new Account();
        hospital.RecordTypeId = rectCo[0].Id;
        hospital.Name = 'Katsu テスト';
        hospital.Quolified_Approve_Status__c = 'Draft';
        hospital.If_Need_Quolified__c = true;
        insert hospital;
 
        PageReference ref = new PageReference('/apex/AccountQualifyAlert?id=' + hospital.id);
        Test.setCurrentPage(ref);
           AccountQualifyAlertController controller = new AccountQualifyAlertController();
        controller.init();
        
    }
    
    @isTest static void test_method_two() {
        // Implement test code
    }
    
}