Skip to content

Releases: benahm/TestDataFactory

V3.2

30 Aug 07:07
ccecfc6
Compare
Choose a tag to compare
  • 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);

V3.1

16 May 21:22
Compare
Choose a tag to compare
  • Update API to V51.0
  • Regenerate a new version of the unlocked package & release it, so it can be installed in production

V3.0

27 Feb 10:34
13ec766
Compare
Choose a tag to compare

V2.6

02 Nov 14:52
aa2df57
Compare
Choose a tag to compare
  • Publish TDF as an unlocked package
  • Upgrade API version to 47.0

V2.5

12 Nov 13:19
a8ff9a3
Compare
Choose a tag to compare
  • Auto-detect if person account is enabled
  • Publish the TDF as managed package
  • Bug fix

V2.1

23 Jul 16:28
d19ec40
Compare
Choose a tag to compare
  • Upgrade the classes API version to 43.0
  • Minor fixes

V2.0

13 Apr 14:50
af10f51
Compare
Choose a tag to compare
  • 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

V1.7

27 Jan 16:10
3b21887
Compare
Choose a tag to compare
  • Code refactoring & adding comments

V1.6

18 Jan 20:57
04a880f
Compare
Choose a tag to compare
  • Code refactoring & adding comments
  • Changing DefaultValueProvider from abstract to virtual
  • Add support of TDF.DEFAULT_VALUE for reference fields
  • Add caching for getting fields map
  • Bugfix

V1.5

11 Dec 18:55
2fe6869
Compare
Choose a tag to compare
  • New implementation of the support for orgs with Person Account enabled
  • Review the get{Type}DefaultValue methods
  • Bug fixes