We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b2207d9 commit dee3bacCopy full SHA for dee3bac
sfdx-source/apex-common/test/classes/fflib_ApplicationTest.cls
@@ -442,6 +442,7 @@ private class fflib_ApplicationTest
442
{
443
public boolean isInsertCalled = false;
444
public boolean isUpdateCalled = false;
445
+ public boolean isUpsertCalled = false;
446
public boolean isDeleteCalled = false;
447
public boolean isPublishCalled = false;
448
public Boolean isEmptyRecycleBinCalled = false;
@@ -452,6 +453,9 @@ private class fflib_ApplicationTest
452
453
public void dmlUpdate(List<SObject> objList){
454
this.isUpdateCalled = true;
455
}
456
+ public void dmlUpsert(List<SObject> objList, Schema.SObjectField externalId){
457
+ this.isUpsertCalled = true;
458
+ }
459
public void dmlDelete(List<SObject> objList){
460
this.isDeleteCalled = true;
461
0 commit comments