Skip to content

Commit

Permalink
Added share invite tests. #41
Browse files Browse the repository at this point in the history
  • Loading branch information
OGKevin committed Nov 13, 2017
1 parent 74d9336 commit d1b9dd4
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions BunqSdk.Tests/Model/Generated/Object/NotificationUrlTest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -204,3 +204,25 @@ public void TestScheduledPaymentModel()
GET_SCHEDULE_PAYMENT
);
}

[Fact]
public void TestShareInviteBankModel()
{
ExeceuteNotificationUrlTest(
JSON_PATH_SHARE_INVITE_BANK_INQUIRY_MODEL,
typeof(ShareInviteBankInquiry),
GET_SHARE_INVITE_BANK_INQUIRY
);
}

[Fact]
public void TestShareInviteBankResponse()
{
ExeceuteNotificationUrlTest(
JSON_PATH_SHARE_INVITE_BANK_RESPONSE_MODEL,
typeof(ShareInviteBankResponse),
GET_SHARE_INVITE_BANK_RESPONSE
);
}
}
}

0 comments on commit d1b9dd4

Please sign in to comment.