CodeExplorer getValidSalutationIds example
static::
assertTrue($response['success'
]);
$customer =
$this->
getCustomer();
static::
assertSame($accountType,
$customer->
getAccountType());
} public function testProfileCanBeChangedWithEmptyAccountType(): void
{ $customer =
$this->
getCustomer();
$currentSalutationId =
$customer->
getSalutationId();
$salutationIds =
$this->
getValidSalutationIds();
static::
assertNotEmpty($salutationIds);
$updateSalutationId = null;
foreach ($salutationIds as $salutationId) { if ($currentSalutationId ===
$salutationId) { continue;
} $updateSalutationId =
$salutationId;
break;
}