liuyn
2024-03-11 a87f1c3df03078814ee97ad0c8ac200a232419e9
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
@isTest
private class SubAuthorizedHandlerTest {
 
    @isTest static void test_CheckValue() {
        try {
            SubAuthorized__c tempSubAuthor = new SubAuthorized__c();
            tempSubAuthor.AuthorizedStartDate__c = Date.today().adddays(1);
            tempSubAuthor.AuthorizedEndDate__c = Date.today().adddays(2);
            insert tempSubAuthor;
        } catch (Exception e) {
        }
    }
    @isTest static void test_getsubUsers() {
        SubAuthorizedHandler.getsubUsers(Userinfo.getUserid());
    }
    //@isTest static void test_getRoleSuperiorUsers() {
    //    SubAuthorizedHandler.getRoleSuperiorUsers(Userinfo.getUserid());
    //}
}