涂煌豪
2022-04-02 75c928f3ef86611c8f7b21e79d2f9b453fdf25f4
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;
    }
}