complete story 15.1

This commit is contained in:
Naser Mansour
2026-01-09 18:45:17 +02:00
parent 5803410584
commit 959cc0e717
9 changed files with 338 additions and 9 deletions
@@ -0,0 +1,19 @@
<?php
use App\Enums\PotentialClientType;
test('potential client type has correct cases', function () {
expect(PotentialClientType::cases())->toHaveCount(3);
});
test('potential client type individual has correct value', function () {
expect(PotentialClientType::Individual->value)->toBe('individual');
});
test('potential client type company has correct value', function () {
expect(PotentialClientType::Company->value)->toBe('company');
});
test('potential client type agency has correct value', function () {
expect(PotentialClientType::Agency->value)->toBe('agency');
});