Skip to content

Commit 2a78b4a

Browse files
chore(internal): codegen related update
1 parent 4169656 commit 2a78b4a

File tree

109 files changed

+1994
-1942
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

109 files changed

+1994
-1942
lines changed

src/Orb.Tests/Models/AdjustmentIntervalTest.cs

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -232,7 +232,7 @@ public class AdjustmentTest : TestBase
232232
public void plan_phase_usage_discountValidation_Works()
233233
{
234234
Adjustment value = new(
235-
new()
235+
new PlanPhaseUsageDiscountAdjustment()
236236
{
237237
ID = "id",
238238
AdjustmentType = PlanPhaseUsageDiscountAdjustmentAdjustmentType.UsageDiscount,
@@ -260,7 +260,7 @@ public void plan_phase_usage_discountValidation_Works()
260260
public void plan_phase_amount_discountValidation_Works()
261261
{
262262
Adjustment value = new(
263-
new()
263+
new PlanPhaseAmountDiscountAdjustment()
264264
{
265265
ID = "id",
266266
AdjustmentType = PlanPhaseAmountDiscountAdjustmentAdjustmentType.AmountDiscount,
@@ -288,7 +288,7 @@ public void plan_phase_amount_discountValidation_Works()
288288
public void plan_phase_percentage_discountValidation_Works()
289289
{
290290
Adjustment value = new(
291-
new()
291+
new PlanPhasePercentageDiscountAdjustment()
292292
{
293293
ID = "id",
294294
AdjustmentType =
@@ -317,7 +317,7 @@ public void plan_phase_percentage_discountValidation_Works()
317317
public void plan_phase_minimumValidation_Works()
318318
{
319319
Adjustment value = new(
320-
new()
320+
new PlanPhaseMinimumAdjustment()
321321
{
322322
ID = "id",
323323
AdjustmentType = PlanPhaseMinimumAdjustmentAdjustmentType.Minimum,
@@ -346,7 +346,7 @@ public void plan_phase_minimumValidation_Works()
346346
public void plan_phase_maximumValidation_Works()
347347
{
348348
Adjustment value = new(
349-
new()
349+
new PlanPhaseMaximumAdjustment()
350350
{
351351
ID = "id",
352352
AdjustmentType = PlanPhaseMaximumAdjustmentAdjustmentType.Maximum,
@@ -374,7 +374,7 @@ public void plan_phase_maximumValidation_Works()
374374
public void plan_phase_usage_discountSerializationRoundtrip_Works()
375375
{
376376
Adjustment value = new(
377-
new()
377+
new PlanPhaseUsageDiscountAdjustment()
378378
{
379379
ID = "id",
380380
AdjustmentType = PlanPhaseUsageDiscountAdjustmentAdjustmentType.UsageDiscount,
@@ -405,7 +405,7 @@ public void plan_phase_usage_discountSerializationRoundtrip_Works()
405405
public void plan_phase_amount_discountSerializationRoundtrip_Works()
406406
{
407407
Adjustment value = new(
408-
new()
408+
new PlanPhaseAmountDiscountAdjustment()
409409
{
410410
ID = "id",
411411
AdjustmentType = PlanPhaseAmountDiscountAdjustmentAdjustmentType.AmountDiscount,
@@ -436,7 +436,7 @@ public void plan_phase_amount_discountSerializationRoundtrip_Works()
436436
public void plan_phase_percentage_discountSerializationRoundtrip_Works()
437437
{
438438
Adjustment value = new(
439-
new()
439+
new PlanPhasePercentageDiscountAdjustment()
440440
{
441441
ID = "id",
442442
AdjustmentType =
@@ -468,7 +468,7 @@ public void plan_phase_percentage_discountSerializationRoundtrip_Works()
468468
public void plan_phase_minimumSerializationRoundtrip_Works()
469469
{
470470
Adjustment value = new(
471-
new()
471+
new PlanPhaseMinimumAdjustment()
472472
{
473473
ID = "id",
474474
AdjustmentType = PlanPhaseMinimumAdjustmentAdjustmentType.Minimum,
@@ -500,7 +500,7 @@ public void plan_phase_minimumSerializationRoundtrip_Works()
500500
public void plan_phase_maximumSerializationRoundtrip_Works()
501501
{
502502
Adjustment value = new(
503-
new()
503+
new PlanPhaseMaximumAdjustment()
504504
{
505505
ID = "id",
506506
AdjustmentType = PlanPhaseMaximumAdjustmentAdjustmentType.Maximum,

0 commit comments

Comments
 (0)