Skip to content

Instantly share code, notes, and snippets.

@mannharleen
Created November 1, 2016 03:00
Show Gist options
  • Save mannharleen/7180c141c9bc85fc61fddd87fe1efc10 to your computer and use it in GitHub Desktop.
Save mannharleen/7180c141c9bc85fc61fddd87fe1efc10 to your computer and use it in GitHub Desktop.
Batch class with test to update all accounts in the org. Uses database.getquerylocator();
global class batchclass1 implements Database.Batchable<sobject>,Database.Stateful {
global integer count = 0;
global Database.QueryLocator start(Database.BatchableContext bc) {
return Database.getQueryLocator('select id,name from account');
}
global void execute(Database.BatchableContext bc,List<account> acc_lst) {
List<account> acc_update_lst = new List<account>();
for(account a: acc_lst) {
a.name+=1;
acc_update_lst.add(a);
count+=1;
}
update acc_update_lst;
}
global void finish(Database.BatchableContext bc) {
system.debug('Accounts updated = '+count);
system.debug('batch job id = '+bc.getJobId());
}
}
@isTest(SeeAllData=true)
public class batchclass1_test {
@isTest
public static void testit() {
Test.startTest();
batchclass1 abc = new batchclass1();
Id batchId = Database.executeBatch(abc);
system.debug('batchId = ' + batchId);
Test.stopTest();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment