Skip to content

Commit

Permalink
Merge pull request #155 from apex-enterprise-patterns/devops/removal-…
Browse files Browse the repository at this point in the history
…of-fflib-mocks

Devops/removal of fflib mocks
  • Loading branch information
ImJohnMDaniel authored Dec 2, 2024
2 parents 0ff709d + 615f40c commit 56973f7
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 68 deletions.
2 changes: 1 addition & 1 deletion config/project-scratch-def.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"orgName": "apex-mock",
"orgName": "apex-mocks",
"edition": "Developer",
"settings": {
"lightningExperienceSettings": {
Expand Down
4 changes: 2 additions & 2 deletions sfdx-source/apex-mocks/test/classes/fflib_ApexMocksTest.cls
Original file line number Diff line number Diff line change
Expand Up @@ -720,7 +720,7 @@ private class fflib_ApexMocksTest
{
// Given
fflib_ApexMocks mocks = new fflib_ApexMocks();
fflib_MyList.IList mockList = new fflib_Mocks.Mockfflib_MyList(mocks);
fflib_MyList mockList = (fflib_MyList)mocks.mock(fflib_MyList.class);

// When
mockList.add('bob');
Expand All @@ -735,7 +735,7 @@ private class fflib_ApexMocksTest
{
// Given
fflib_ApexMocks mocks = new fflib_ApexMocks();
fflib_MyList.IList mockList = new fflib_Mocks.Mockfflib_MyList(mocks);
fflib_MyList mockList = (fflib_MyList)mocks.mock(fflib_MyList.class);

// When
mocks.startStubbing();
Expand Down
60 changes: 0 additions & 60 deletions sfdx-source/apex-mocks/test/classes/mocks/fflib_Mocks.cls

This file was deleted.

This file was deleted.

0 comments on commit 56973f7

Please sign in to comment.