- Allow looping through a List of values, example :
Create 100 Accounts with a list of 5 different names
Create a list of 100 Account sObjects with a list of 5 different names that will loop and a same description
List<Account> accList = TestDataFactory.createSObjectList('Account', new Map<String,Object>{
'Name' => new List<String>{'Google','Amazon','Facebook','Apple','Microsoft'},
'Description' => 'Same description'
},100);
- Updated Performance 🚀 page
- Updated API version to 52.0