11 / 18 · Module 14 — External Automated Testing of Mule Integrations · filtered: cheatsheet← prev⊞ allnext →
14.61What the Salesforce helper should hide
Tests shouldn't all contain OAuth/SOQL plumbing.
Instead:
const account =
await salesforce.getAccountByExternalId(id);
Helper owns:
Salesforce authentication
query encoding
SOQL execution
response parsing
Tests remain about business behavior.