Last active
February 11, 2025 02:55
-
-
Save benahm/a9996eaf80671f993eb421797a5f00b6 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| List<Account> accList = TestDataFactory.createSObjectList('Account', new Map<String,Object>{ | |
| 'Description' => 'Account Description' | |
| },10); | |
| List<Case> caseList = TestDataFactory.createSObjectList('Case', new Map<String,Object>{ | |
| 'Account' => AccList, | |
| 'Contact.Account' => AccList | |
| },10); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment