buli
2022-04-06 2d4a8d2dcad5a17127d2c73c48ddc4b67ec79448
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
/*
 * Author: Guo, Aline Yaying
 * Created Date: 03/22/2022
 * Purpose: Test Class
 * History: 
 *      03/22/2022 - Guo, Aline Yaying - Initial Code.
 * 
 * */
@isTest
private class NewAndEditEventControllerTest {
    static testMethod void testMethod4() {
     
        TestDataUtility.CreatePIPolicyConfiguration();
        Test.setMock(HttpCalloutMock.class, new TestDataUtility.CreateMetaDataUtilityHttpMock());
        Event eventTest = TestDataUtility.CreateEvent(1)[0];
 
        Test.startTest();
        ApexPages.StandardController con =  new ApexPages.StandardController(eventTest);
        NewAndEditEventController event = new NewAndEditEventController(con);
        Test.stopTest();
    }
}