Releases: benahm/TestDataFactory
Releases · benahm/TestDataFactory
V3.2
- 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
V3.1
V3.0
- Rename class from TDF to TestDataFactory
- Upgrade API version to 48.0
- Use deferred getDescribe
- Update project to Salesforce DX structure
- Publish the Test Data Factory Apex Dox
V2.6
V2.5
V2.1
V2.0
- Code refactoring & Adding Comments
- Refactoring of the support for Orgs with Person Account enabled
- Support for providing a list of values in the map of value when creating a list of sObjects
- Support for providing a sub map of values in the map of values when creating a single or a list of sObjects