@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();
|
|
|
|
}
|
|
}
|