buli
2022-05-14 ead4df22dca33a867279471821ca675f91dec760
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
@isTest
public with sharing class ApplicationMessageControllerTest {
 
    static testMethod void myTest1() {       
        // 新建备品借出申请
            loaner_application__c odr = new loaner_application__c(
            Name = '',
            Equipment_Type__c = 'IE',
            OCN_Internal_Notes__c = ''
        );
        insert odr;
        
         //画面迁移--留言画面
        PageReference page = new PageReference('/apex/ApplicationMessagePopUp?raid=' + 
 
odr.Id );
        System.Test.setCurrentPage(page);
        
        ApplicationMessageController controller = new ApplicationMessageController();
        
 
        //取得备品借出申请
        loaner_application__c odr1 = [select Id, Name, OCN_Internal_Notes__c from 
 
loaner_application__c where Id = :odr.Id];
 
        //初始化
        controller.init1();
        System.assertEquals('', controller.ra1.OCN_Internal_Notes__c);
        
        //发送按钮
        controller.ra1.OCN_Internal_Notes__c = 'test1';
 
        //保存后
        controller.saveBtn();
 
 
 
    }
 
    static testMethod void myTest2() {       
        // 新建备品借出申请
        loaner_application__c odr = new loaner_application__c(
            Name = '',
            Equipment_Type__c = 'IE',
            OCN_Internal_Notes__c = 'test1'
        );
        insert odr;
        
         //画面迁移--留言画面
        PageReference page = new PageReference('/apex/ApplicationMessagePopUp?raid=' + 
 
        odr.Id );
        System.Test.setCurrentPage(page);
        
        ApplicationMessageController controller = new ApplicationMessageController();
        
 
        //取得备品借出申请
        loaner_application__c odr1 = [select Id, Name, OCN_Internal_Notes__c from 
 
        loaner_application__c where Id = :odr.Id];
 
        //初始化
        controller.init();
        //System.assertEquals('', controller.ra1.OCN_Internal_Notes__c);
        controller.ra1 = odr1;
 
        //发送按钮
        controller.ra1.OCN_Internal_Notes__c = '';
 
        //保存后
        controller.saveBtn();
 
 
 
    }
 
}