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