1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
@Istest
public  class LexSubmitExtensionControllerTest {
    static testMethod void testMethod01(){
           //备品借出申请
           Rental_Apply__c raObj = new Rental_Apply__c();
           raObj.Name = 'testra';
           raObj.Product_category__c = 'GI';
           raObj.Demo_purpose1__c = '产品试用';
           raObj.demo_purpose2__c = FixtureUtil.raDemo_purpose2MAP.get('shiyongwuxunjia');
           raObj.direct_send__c = '医疗机构';
           raObj.Loaner_received_staff__c = '王五';
           raObj.Loaner_received_staff_phone__c = '110';
           raObj.direct_shippment_address__c = '北京市';
           raObj.Request_shipping_day__c = Date.toDay();  // 希望到货日
           raObj.Hope_Lonaer_date_Num__c = 1;  // 希望借用天数
           raObj.Phone_number__c = '1234567890';
           insert raObj;
           LexSubmitExtensionController.init(raObj.id);
    }
}