Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Changed Order to Opportunity for compatibility with orgs without Orders Enabled #159

Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 9 additions & 9 deletions sfdx-source/apex-mocks/test/classes/fflib_ApexMocksUtilsTest.cls
Original file line number Diff line number Diff line change
Expand Up @@ -229,23 +229,23 @@ public class fflib_ApexMocksUtilsTest
StockKeepingUnit = 'P2'
);

OrderItem oi1 = new OrderItem(
Id = fflib_IDGenerator.generate(OrderItem.SObjectType),
OpportunityLineItem oli1 = new OpportunityLineItem(
Id = fflib_IDGenerator.generate(OpportunityLineItem.SObjectType),
Product2Id = prod1.Id,
Product2 = prod1,
UnitPrice = 10,
Quantity = 1
);

OrderItem oi2 = new OrderItem(
Id = fflib_IDGenerator.generate(OrderItem.SObjectType),
OpportunityLineItem oli2 = new OpportunityLineItem(
Id = fflib_IDGenerator.generate(OpportunityLineItem.SObjectType),
Product2Id = prod2.Id,
Product2 = prod2,
UnitPrice = 10,
Quantity = 1
);

Order order = new Order();
Opportunity opportunity = new Opportunity();

Exception exceptionThatWasCalled = null;

Expand All @@ -254,10 +254,10 @@ public class fflib_ApexMocksUtilsTest

try {
fflib_ApexMocksUtils.makeRelationship(
List<Order>.class,
new List<Order>{ order },
OrderItem.OrderId,
new List<List<OrderItem>>{ new List<OrderItem>{oi1, oi2} }
List<Opportunity>.class,
new List<Opportunity>{ opportunity },
OpportunityLineItem.OpportunityId,
new List<List<OpportunityLineItem>>{ new List<OpportunityLineItem>{oli1, oli2} }
);
} catch (JSONException e) {
exceptionThatWasCalled = e;
Expand Down
Loading