GWY
2022-05-21 a3460549533111815e7f73d6cef601a58031525d
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
@isTest
private class ProRegisterBatchSchedulableTest {
 
    @isTest static void test_method_one() {
        String CRON_EXP = '0 0 0 3 9 ? 2022';
        System.Test.startTest();
        String jobId = system.schedule('ProRegisterBatchSchedulableTest', CRON_EXP, new ProRegisterBatchSchedulable());       
        System.Test.StopTest();
    }
 
    //@isTest static void test_method_two() {
    //    String CRON_EXP = '0 0 0 3 9 ? 2022';
 //       System.Test.startTest();
 //       String jobId = system.schedule('ProRegisterBatchSchedulableTest', CRON_EXP, new ProRegisterBatchSchedulable());       
 //       System.Test.StopTest();
    //}
}