Skip to content

Latest commit

History

History
33 lines (20 loc) 路 1.67 KB

CONCEPT.md

File metadata and controls

33 lines (20 loc) 路 1.67 KB

Core concepts 馃挕

This Apex Test Data Factory (TestDataFactory) uses the Apex Describe Information to automatically detect and fill all the required fields of an sObject

Overview

Overview of the internal classes of the TestDataFactory

TestDataFactory internal classes list

Class name Description
TestDataFactory The containing class
ObjectFactory Instantiate the sObject and all the related sObjects
ObjectManager Contains all the sObjects instances, insertAll method
DefaultValueProvider Virtual class that provide all default field values
AutoFieldDefaultValue Wrapper of an auto generated default value
FieldDefaultValue Wrapper of a field default value
ListFieldDefaultValue Wrapper of a list of field default values
RelationshipFieldDefaultValue Wrapper of a lookup field default value
ListRelationshipFieldDefaultValue Wrapper of a list of lookup field default values

For more details please visit the TestDataFactory ApexDox

Next