高章伟
2022-02-18 8b5f4c6c281cfa548f92de52c8021e37aa81901e
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
@isTest
private class BathUpdateSobjectTest {
    static testMethod void testMethod1() {
        Contact contact = new Contact();
        contact.LastName = 'lastName';
        insert contact;
 
        Id execBTId1 = Database.executeBatch(new BathUpdateSobject('Contact'), 100);
        // Id execBTId2 = Database.executeBatch(new BathUpdateSobject('Contact','LastName = \'lastName\''), 100);
        // BathUpdateSobject b = new BathUpdateSobject();
        // b.test();
        // String executeTime = '0 5 10 * * ?';
        // UpDateSobjectSchedule updateschedule = new UpDateSobjectSchedule();
        // System.schedule('batch bathupdate',executeTime,updateschedule);
 
        // BathUpdateSobject bathupdate = new BathUpdateSobject('Contact');
        // bathupdate.execute(BatchableContext BC, List scope)
    }
}