buli
2022-03-10 a48ed9f335db52a433a2b343ff9636a28ee8a97f
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;
    }
}