sunxia
2022-03-11 9909cdba659d1933abb3c63e9cc5dc7e719f90e6
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;
    }
}