| Tweet |
Introduction
Apex integration testing was launched in Developer Preview in the Summer '26
Salesforce release. In my blog post on this new functionality, I noted that it
was:
limited to interactions with the Data 360 and Agentforce Salesforce services, but hopefully this will be relaxed in the future and we'll be able to make callouts to any authorised endpoint that we choose.
In Winter '27 the future is here! While the feature is still in Developer Preview, your tests can now make HTTP callouts to any authorised endpoint, including external services configured via named credentials.
Sample
"release": "preview", "features": ["EnableSetPasswordInApi", "ApexIntegrationTests", "Einstein1AIPlatform"],
I've used my standard endpoint for proof of concept work - the free tier of Agify (agify.io), which estimates ages based on names. This (currently) doesn't require authentication, works off a simple GET request with the name as a parameter, and returns a small, easily understood JSON response. There's a very simple Agify service, consisting of a getAge() method that sends my name off for an estimate.
The integration test simply executes the service's getAge() method and verifies that the response contains the supplied name. There's not much else worth asserting here - I can't be sure what age will be returned, as the response can change in line with the underlying Agify dataset:
@IntegrationTest
public with sharing class AgifyServiceIntegrationTest {
@IntegrationTest
public static void testServiceInteraction() {
AgifyService.AgifyResponse resp=AgifyService.getAge('Keir Bowden');
Assert.areEqual('Keir Bowden', resp.name,
'The name returned from the service should match the input name.');
}
}
The key aspect is that the test completes successfully. Running this against the Summer '26 release gives the following error:
12:41:27:012 FATAL_ERROR System.TypeException: Methods defined as TestMethod do not support Web service callouts
(Clearly it wasn't worth defining a bespoke error message for the single release that integration testing didn't allow callouts, but I must defend myself here - I have no "Methods defined as TestMethod", just methods decorated with @IntegrationTest).
I'm really pleased that it's only taken one release to open up integration testing past Agentforce and Data 360. My next hope is that integration testing is never allowed in a production environment - it's just too dangerous in my opinion, especially now there can be callouts to all manner of other production systems. Scratch orgs and sandboxes will be fine for the vast majority of us, and those that really do need to run it all in production can do so outside of a testing framework.
More Information
- Transactions in Apex Integration Testing
- Apex Integration Testing in Summer '26
- Apex Integration Testing in the Winter '27 Release Notes
- Integration Testing in the Apex Developer Guide
- Software Testing on the Salesforce Platform



















