buli
2022-05-13 2f4492ee18f90274582fcc2bb06f5e9bf64136e8
force-app/main/default/classes/NewAndEditContactControllerTest.cls
@@ -9,7 +9,7 @@
        // Contact con = TestDataUtility.CreateContacts(1)[0];
        Account acc = TestDataUtility.CreateAccounts(1)[0];
        Contact con = new Contact();
        String url = ApexPages.currentPage().getParameters().put('retURL','/'+acc.Id);
        String url = ApexPages.currentPage().getParameters().put('con4_lkid',acc.Id);
        Test.startTest();
        ApexPages.StandardController sc =  new ApexPages.StandardController(con);
@@ -22,28 +22,29 @@
        qis.PageLoad();
        Test.stopTest();
    }
    /*static testMethod void testMethod3() {
    static testMethod void testMethod3() {
        Test.setMock(HttpCalloutMock.class, new TestDataUtility.CreateMetaDataUtilityHttpMock());
        // Contact contactTest = TestDataUtility.CreateContacts(1)[0];
        Account acc = TestDataUtility.CreateAccounts(1)[0];
        //Account acc = TestDataUtility.CreateAccounts(1)[0];
        //Account acc1 = [SELECT Id,Name FROM Account WHERE RecordType.DeveloperName = 'Office' OR RecordType.DeveloperName = 'AgencyContact' OR RecordType.DeveloperName = 'Agency' Limit 1];
        String accrecordTypeId = Schema.SObjectType.Account.getRecordTypeInfosByDeveloperName().get('Agency').getRecordTypeId();
        Account acc1 = new Account(Name = 'testacc1',RecordTypeId = accrecordTypeId);
        String accrecordTypeId = Schema.SObjectType.Account.getRecordTypeInfosByDeveloperName().get('Dealer').getRecordTypeId();
        Account acc1 = new Account(Name = 'testacc1',RecordTypeId = accrecordTypeId,ProductSegment__c='BS');
        insert acc1;
        Contact contact = new Contact();
        
        String recordTypeId = Schema.SObjectType.Contact.getRecordTypeInfosByDeveloperName().get('Account').getRecordTypeId();
        String recordTypeId = Schema.SObjectType.Contact.getRecordTypeInfosByDeveloperName().get('SSBD').getRecordTypeId();
        String url = ApexPages.currentPage().getParameters().put('RecordType',recordTypeId);
        url = ApexPages.currentPage().getParameters().put('accid',acc1.Id);
        url = ApexPages.currentPage().getParameters().put('con4_lkid',acc1.Id);
        Test.startTest();
        ApexPages.StandardController con =  new ApexPages.StandardController(new Contact());
        ApexPages.StandardController con =  new ApexPages.StandardController(contact);
        NewAndEditContactController cont = new NewAndEditContactController(con);
        // cont.rtTypeId
        cont.PageLoad();
        Test.stopTest();
    }*/
    }
}