feat(presets): add expectation for Laravel command handle method

This commit is contained in:
Punyapal Shah
2024-06-10 21:40:16 +05:30
parent 65dacd5647
commit abc245bf85

View File

@ -32,7 +32,10 @@ final class Laravel extends AbstractPreset
->toHaveSuffix('Request');
$this->expectations[] = expect('App\Console\Commands')
->toHaveSuffix('Command');
->toHaveSuffix('Command')
->toExtend('Illuminate\Console\Command')
->toHaveMethod('handle')
->toImplementNothing();
$this->expectations[] = expect('App\Exceptions')
->toImplement('Throwable');