```
✨ feat(revervation): [Ajoute la création de session de réservation et le flow] 🐛 fix(PurgeCommandTest): [Utilise addCommand au lieu de add pour les commandes] 📝 chore(deps): [Mise à jour des dépendances Composer et corrections] 🐛 fix(KeycloakAuthenticator): [Corrige le type nullable de l'exception start] ✨ feat(Customer): [Ajoute les sessions de commandes aux entités Customer] ♻️ refactor(AppLogger): [Refactorise l'AppLogger pour obtenir l'UserAgent] ✨ feat(FlowReserve): [Ajoute une action de validation du panier] ```
This commit is contained in:
@@ -4,12 +4,14 @@ namespace App\Tests\Command;
|
||||
|
||||
use App\Command\GenerateVideoThumbsCommand;
|
||||
use App\Service\Media\VideoThumbnailer;
|
||||
use PHPUnit\Framework\Attributes\AllowMockObjectsWithoutExpectations;
|
||||
use PHPUnit\Framework\MockObject\MockObject;
|
||||
use PHPUnit\Framework\TestCase;
|
||||
use Symfony\Component\Console\Application;
|
||||
use Symfony\Component\Console\Tester\CommandTester;
|
||||
use Symfony\Component\DependencyInjection\ParameterBag\ParameterBagInterface;
|
||||
|
||||
#[AllowMockObjectsWithoutExpectations]
|
||||
class GenerateVideoThumbsCommandTest extends TestCase
|
||||
{
|
||||
private MockObject&ParameterBagInterface $parameterBag;
|
||||
@@ -38,7 +40,7 @@ class GenerateVideoThumbsCommandTest extends TestCase
|
||||
// Execute
|
||||
$command = new GenerateVideoThumbsCommand($this->parameterBag, $this->videoThumbnailer);
|
||||
$application = new Application();
|
||||
$application->add($command);
|
||||
$application->addCommand($command);
|
||||
$commandTester = new CommandTester($application->find('app:generate-video-thumbs'));
|
||||
|
||||
$commandTester->execute([]);
|
||||
@@ -66,7 +68,7 @@ class GenerateVideoThumbsCommandTest extends TestCase
|
||||
// Execute
|
||||
$command = new GenerateVideoThumbsCommand($this->parameterBag, $this->videoThumbnailer);
|
||||
$application = new Application();
|
||||
$application->add($command);
|
||||
$application->addCommand($command);
|
||||
$commandTester = new CommandTester($application->find('app:generate-video-thumbs'));
|
||||
|
||||
$commandTester->execute([]);
|
||||
|
||||
Reference in New Issue
Block a user