-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
b3ca400
commit b3a9782
Showing
14 changed files
with
202 additions
and
25 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Binary file modified
BIN
-3.85 KB
(100%)
IlluminatedCloud/test_data_framework/OfflineSymbolTable.zip
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,10 @@ | ||
* Clean up | ||
* Refactor fflib_UoW to just be what we need | ||
* Clean up System.debugs | ||
* Documentation | ||
* README | ||
* Apexdocs | ||
* Build Apexdocs site | ||
* Limitations and performance | ||
* How many DML statements are used per situation | ||
* In-memory support |
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
public with sharing class OrderItemTestDataBuilder extends SObjectTestDataBuilder implements ITestDataBuilder { | ||
public override SObjectType getSObjectType() { | ||
return OrderItem__c.SObjectType; | ||
} | ||
|
||
public OrderItemTestDataBuilder with(SObjectField field, Object value) { | ||
return (OrderItemTestDataBuilder) withData(field, value); | ||
} | ||
|
||
public OrderItem__c insertNew() { | ||
return (OrderItem__c) this.insertSObject(); | ||
} | ||
|
||
public List<OrderItem__c> insertNew(Integer numberOfRecords) { | ||
return this.insertSObjects(numberOfRecords); | ||
} | ||
|
||
protected override Map<SObjectField, Object> getDefaultValueMap() { | ||
return new Map<SObjectField, Object> { | ||
OrderItem__c.Order__c => bindTo(SObjectTestDataBuilder.of(Order__c.SObjectType)), | ||
OrderItem__c.Product__c => bindTo(SObjectTestDataBuilder.of(Product__c.SObjectType)) | ||
}; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<ApexClass xmlns="http://soap.sforce.com/2006/04/metadata"> | ||
<apiVersion>54.0</apiVersion> | ||
<status>Active</status> | ||
</ApexClass> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
public with sharing class OrderTestDataBuilder extends SObjectTestDataBuilder implements ITestDataBuilder { | ||
public override SObjectType getSObjectType() { | ||
return Order__c.SObjectType; | ||
} | ||
|
||
public OrderTestDataBuilder with(SObjectField field, Object value) { | ||
return (OrderTestDataBuilder) withData(field, value); | ||
} | ||
|
||
public Order__c insertNew() { | ||
return (Order__c) this.insertSObject(); | ||
} | ||
|
||
public List<SObject> insertNew(Integer numberOfRecords) { | ||
return this.insertSObjects(numberOfRecords); | ||
} | ||
|
||
protected override Map<SObjectField, Object> getDefaultValueMap() { | ||
return new Map<SObjectField, Object> { | ||
Order__c.Customer__c => bindTo(SObjectTestDataBuilder.of(Account.SObjectType)) | ||
}; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<ApexClass xmlns="http://soap.sforce.com/2006/04/metadata"> | ||
<apiVersion>54.0</apiVersion> | ||
<status>Active</status> | ||
</ApexClass> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,7 +5,7 @@ | |
"default": true | ||
}, | ||
{ | ||
"path": "unpackaged", | ||
"path": "example", | ||
"default": false | ||
} | ||
], | ||
|