高章伟
2022-03-22 4de876db8c9c9be17932eaff9f55604896f6419f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
@isTest
private class OrderListHandlerTest {
    static testMethod void testMethod1(){
        Sample_order_list__c sorl = new Sample_order_list__c();
        // sorl.Name = '123';
        sorl.Status__c = '暂存';
        insert sorl;
        sorl.Status__c = '订单已发送';
        update sorl;
    }
 
    static testMethod void testMethod2(){
        Sample_order_list__c sorl = new Sample_order_list__c();
        // sorl.Name = '123';
        sorl.Status__c = '订单已发送';
        insert sorl;
    }
}