Skip to content

Commit

Permalink
Using new constants. (#67)
Browse files Browse the repository at this point in the history
  • Loading branch information
OGKevin committed Nov 14, 2017
1 parent b62c608 commit 6ed3420
Showing 1 changed file with 13 additions and 13 deletions.
26 changes: 13 additions & 13 deletions tests/Model/Generated/Object/NotificationUrlTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ public function testMutationModel()
$this->executeNotificationUrlTest(
self::JSON_PATH_MUTATION_MODEL,
Payment::class,
self::GET_PAYMENT
self::GETTER_PAYMENT
);
}

Expand All @@ -112,7 +112,7 @@ public function testBunqMeTabModel()
$this->executeNotificationUrlTest(
self::JSON_PATH_BUNQ_ME_TAB_MODEL,
BunqMeTab::class,
self::GET_BUNQ_ME_TAB
self::GETTER_BUNQ_ME_TAB
);
}

Expand All @@ -123,7 +123,7 @@ public function testGetMonetaryAccountModel()
$this->executeNotificationUrlTest(
self::JSON_PATH_MONETARY_ACCOUNT_BANK_MODEL,
MonetaryAccountBank::class,
self::GET_MONETARY_ACCOUNT_BANK
self::GETTER_MONETARY_ACCOUNT_BANK
);
}

Expand All @@ -134,7 +134,7 @@ public function testPaymentBatchModel()
$this->executeNotificationUrlTest(
self::JSON_PATH_PAYMENT_BATCH_MODEL,
PaymentBatch::class,
self::GET_PAYMENT_BATCH
self::GETTER_PAYMENT_BATCH
);
}

Expand All @@ -145,7 +145,7 @@ public function testRequestResponse()
$this->executeNotificationUrlTest(
self::JSON_PATH_REQUEST_RESPONSE_MODEL,
RequestResponse::class,
self::GET_REQUEST_RESPONSE
self::GETTER_REQUEST_RESPONSE
);
}

Expand All @@ -156,7 +156,7 @@ public function testRequestInquiryModel()
$this->executeNotificationUrlTest(
self::JSON_PATH_REQUEST_INQUIRY_MODEL,
RequestInquiry::class,
self::GET_REQUEST_INQUIRY
self::GETTER_REQUEST_INQUIRY
);
}

Expand All @@ -167,7 +167,7 @@ public function testSchedulePaymentModel()
$this->executeNotificationUrlTest(
self::JSON_PATH_SCHEDULE_PAYMENT_MODEL,
SchedulePayment::class,
self::GET_SCHEDULE_PAYMENT
self::GETTER_SCHEDULE_PAYMENT
);
}

Expand All @@ -178,7 +178,7 @@ public function testShareInviteBankResponse()
$this->executeNotificationUrlTest(
self::JSON_PATH_SHARE_INVITE_BANK_RESPONSE_MODEL,
ShareInviteBankResponse::class,
self::GET_SHARE_INVITE_BANK_RESPONSE
self::GETTER_SHARE_INVITE_BANK_RESPONSE
);
}

Expand All @@ -189,7 +189,7 @@ public function testScheduledInstance()
$this->executeNotificationUrlTest(
self::JSON_PATH_SCHEDULE_INSTANCE_MODEL,
ScheduleInstance::class,
self::GET_SCHEDULE_INSTANCE
self::GETTER_SCHEDULE_INSTANCE
);
}

Expand All @@ -200,7 +200,7 @@ public function testShareInviteBankInquiry()
$this->executeNotificationUrlTest(
self::JSON_PATH_SHARE_INVITE_BANK_INQUIRY_MODEL,
ShareInviteBankInquiry::class,
self::GET_SHARE_INVITE_BANK_INQUIRY
self::GETTER_SHARE_INVITE_BANK_INQUIRY
);
}

Expand All @@ -211,7 +211,7 @@ public function testMasterCardAction()
$this->executeNotificationUrlTest(
self::JSON_PATH_MASTER_CARD_ACTION_MODEL,
MasterCardAction::class,
self::GET_MASTER_CARD_ACTION
self::GETTER_MASTER_CARD_ACTION
);
}

Expand All @@ -222,7 +222,7 @@ public function testChatMessageAnnouncementModel()
$this->executeNotificationUrlTest(
self::JSON_PATH_CHAT_MESSAGE_ANNOUNCEMENT_MODEL,
ChatMessageAnnouncement::class,
self::GET_CHAT_MESSAGE_ANNOUNCEMENT
self::GETTER_CHAT_MESSAGE_ANNOUNCEMENT
);
}

Expand All @@ -233,7 +233,7 @@ public function testDraftPaymentModel()
$this->executeNotificationUrlTest(
self::JSON_PATH_DRAFT_PAYMENT_MODEL,
DraftPayment::class,
self::GET_DRAFT_PAYMENT
self::GETTER_DRAFT_PAYMENT
);
}

Expand Down

0 comments on commit 6ed3420

Please sign in to comment.