公告板
版本库
filestore
活动
搜索
登录
黄千龙
/
OlyMEBG
派生自
OlyMEBG
概况
提交次数
目录
文档
派生
对比
blame
|
历史
|
原始文档
Deploy0331
Li Jun
2022-03-31
3ba0123db48f8bab81ddf0913e1b95280ef545e8
[~huangqianlong/OlyMEBG.git]
/
force-app
/
main
/
default
/
classes
/
DeleteBatchTest.cls
1
2
3
4
5
6
7
8
@isTest
private class DeleteBatchTest {
static testMethod void testMethod1() {
Account acc = TestDataUtility.CreateAccounts(1)[0];
String sql = 'SELECT id FROM Account ';
Database.executeBatch(new DeleteBatch(sql),100);
}
}