Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Hi i trying to get coverage for a class that has few future method (for web service call) and few concrete static methods. but after calling future method, i am unable to call other methods... Can you please tell me how to take coverage for future method and web service calls.

my class structure :

public with sharing class AccountSynchController { 
 @future (callout=true)
    public static void importAccount(Set<Id> ids) {

    }
 @future (callout=true)
    public static void importContact(Set<Id> ids) {

    }
}

[future methods are called from trigger]

Test Class Code : 


        VAT__c testVat = new VAT__c();
    testVat.Code__c = '3';
    insert testVat;        

        Account testAccount = new Account();
        testAccount.Name = 'Test Account';
        testAccount.VATSales__c = testVat.Id;
        testAccount.VATPurchase__c = testVat.Id;
        testAccount.KvK_Nummer__c = '12312312';
        testAccount.PhoneExt__c = '12312312';
        testAccount.Website = '12312312';
        testAccount.BillingPostalCode = '12312312';
        testAccount.BillingCity = '12312312';
        testAccount.Fax = '12312312';
        testAccount.Phone = '12312312';
        testAccount.BillingStreet = '12312312';
        testAccount.BTW_Nummer__c = '12312312';
        testAccount.BillingCountry = '12312312';
        testAccount.BillingState = '12312312';
        testAccount.BTW_Nummer__c = '12312312'; 
        testAccount.E_mail__c = 'test@gmail.com';
        testAccount.Taal__c = 'NL';
        testAccount.SalesPaymentConditionCode__c = '15';
        testAccount.Code__c = '102';
        testAccount.fromExact__c = false;
        testAccount.Exact_Id__c = '123123';
        insert testAccount;

        Contact testContact = new Contact();
        testContact.AccountId = testAccount.Id;
        testContact.Birthdate = system.today();
        testContact.Conact_Exact_Number__c = '12312312312';
        testContact.Email = 'test@gmail.com';
        testContact.FirstName = 'first';
        testContact.Title_Code__c = 'Mr.';
        testContact.Geslacht__c = 'M';
        testContact.Initials__c = 'I';
        testContact.Language_Code__c = 'NL';
        testContact.LastName = 'last';
        testContact.MiddleName__c = 'middle';
        testContact.Phone = '12321312312';
        testContact.fromExact__c = false;
        insert testContact;

Thanks..

share|improve this question

2 Answers

Extending on Adam's answer to test the callouts you will need to either make use of the Test.isRunningTest() method to give you a chance to emulate returning the data from your web service - it's not the best but it's the commonly accepted way.

The other option is to use some mocking and injection but this isn't as straight forward as it should be so most people go for the first option.

share|improve this answer

Begin your unit test by calling Test.startTest(), then run your test inserts. Finish by calling Test.endTest(). Calling that last method ensures that your @future method will have fired. After that you can do your assertions to validate the trigger's actions.

share|improve this answer
Beautiful, my friend, thanks. This post was a ray of sunshine on an otherwise cloudy, Apex-filled day. – Erik Dietrich Feb 27 at 23:27

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.