complete story 15.1
This commit is contained in:
@@ -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');
|
||||
});
|
||||
Reference in New Issue
Block a user