Skip to content

Releases: benahm/TestDataFactory

V3.2

Choose a tag to compare

@benahm benahm released this 30 Aug 07:07
ccecfc6
  • 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

Choose a tag to compare

@benahm benahm released this 16 May 21:22
  • Update API to V51.0
  • Regenerate a new version of the unlocked package & release it, so it can be installed in production

V3.0

Choose a tag to compare

@benahm benahm released this 27 Feb 10:34
13ec766

V2.6

Choose a tag to compare

@benahm benahm released this 02 Nov 14:52
aa2df57
  • Publish TDF as an unlocked package
  • Upgrade API version to 47.0

V2.5

Choose a tag to compare

@benahm benahm released this 12 Nov 13:19
a8ff9a3
  • Auto-detect if person account is enabled
  • Publish the TDF as managed package
  • Bug fix

V2.1

Choose a tag to compare

@benahm benahm released this 23 Jul 16:28
d19ec40
  • Upgrade the classes API version to 43.0
  • Minor fixes

V2.0

Choose a tag to compare

@benahm benahm released this 13 Apr 14:50
af10f51
  • 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

Choose a tag to compare

@benahm benahm released this 27 Jan 16:10
3b21887
  • Code refactoring & adding comments

V1.6

Choose a tag to compare

@benahm benahm released this 18 Jan 20:57
04a880f
  • 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

Choose a tag to compare

@benahm benahm released this 11 Dec 18:55
2fe6869
  • New implementation of the support for orgs with Person Account enabled
  • Review the get{Type}DefaultValue methods
  • Bug fixes