```
✨ 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:
@@ -19,13 +19,13 @@ class AppWarmupImagesCommandTest extends TestCase
|
||||
public function testExecute()
|
||||
{
|
||||
// Mocks
|
||||
$productRepo = $this->createMock(ProductRepository::class);
|
||||
$optionsRepo = $this->createMock(OptionsRepository::class);
|
||||
$productRepo = $this->createStub(ProductRepository::class);
|
||||
$optionsRepo = $this->createStub(OptionsRepository::class);
|
||||
$cacheManager = $this->createMock(CacheManager::class);
|
||||
$dataManager = $this->createMock(DataManager::class);
|
||||
$filterManager = $this->createMock(FilterManager::class);
|
||||
$storage = $this->createMock(StorageInterface::class);
|
||||
$binary = $this->createMock(BinaryInterface::class);
|
||||
$storage = $this->createStub(StorageInterface::class);
|
||||
$binary = $this->createStub(BinaryInterface::class);
|
||||
|
||||
// Dummy data
|
||||
$product = new \stdClass();
|
||||
@@ -78,7 +78,7 @@ class AppWarmupImagesCommandTest extends TestCase
|
||||
);
|
||||
|
||||
$application = new Application();
|
||||
$application->add($command);
|
||||
$application->addCommand($command);
|
||||
|
||||
$command = $application->find('app:images:warmup');
|
||||
$commandTester = new CommandTester($command);
|
||||
|
||||
Reference in New Issue
Block a user