Skip to content

Commit

Permalink
Add the Reservation flag to the test data
Browse files Browse the repository at this point in the history
  • Loading branch information
Ahmed-Ghanam committed Oct 9, 2024
1 parent 3e11984 commit d486bf3
Showing 1 changed file with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@ public async Task GetContactDetailsAsync_WhenAllNumbersValidAndAllContactsFound_

var firstRandomPerson = new Person
{
Reservation = false,
LanguageCode = "nb",
FnumberAk = "17092037169",
MailboxAddress = "1234 Test St",
Expand All @@ -52,6 +53,7 @@ public async Task GetContactDetailsAsync_WhenAllNumbersValidAndAllContactsFound_

var secondRandomPerson = new Person
{
Reservation = true,
LanguageCode = "nb",
FnumberAk = "17033112912",
MailboxAddress = "1234 Test St",
Expand Down Expand Up @@ -141,6 +143,7 @@ public async Task GetContactDetailsAsync_WhenMultipleNationalIdentityNumbersAreP

var firstRandomPerson = new Person
{
Reservation = false,
LanguageCode = "nb",
FnumberAk = "12028193007",
MailboxAddress = "1234 Test St",
Expand All @@ -151,6 +154,7 @@ public async Task GetContactDetailsAsync_WhenMultipleNationalIdentityNumbersAreP

var secondRandomPerson = new Person
{
Reservation = true,
LanguageCode = "nb",
FnumberAk = "01091235338",
MailboxAddress = "1234 Test St",
Expand Down Expand Up @@ -256,6 +260,7 @@ public async Task GetContactDetailsAsync_WhenNationalIdentityNumberIsValid_Retur
var nationalIdentityNumber = "23080188641";
var randomPerson = new Person
{
Reservation = false,
LanguageCode = "nb",
MailboxAddress = "1234 Test St",
MobilePhoneNumber = "+4791234567",
Expand Down

0 comments on commit d486bf3

Please sign in to comment.