高章伟
2022-02-18 8b5f4c6c281cfa548f92de52c8021e37aa81901e
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
@isTest
public class ProRegisterBatchTest {
    static testMethod void Test01(){
        Product_Register__c PRC = new Product_Register__c();
        PRC.Name = '国械注进20183222249';
        PRC.MedPrdClass__c = '3';
        PRC.RegisterNoClass_New__c = '';
        PRC.RegisterNoClass_Old__c = '6822';
        PRC.PrdCompanyAddr__c = '名称:奥林巴斯医疗株式会社;住所:日本国东京都涩谷区幡之谷二丁目43番地2号;联系方式:0081-426-42-2667';
        PRC.RegisterNoStatus__c = '有效';
        PRC.ValidTo__c = Date.today();    
        insert PRC;
 
        Id execBTId = Database.executeBatch(new ProRegisterBatch(), 100);
        execBTId = Database.executeBatch(new ProRegisterBatch(PRC.Id), 100);
    }
}