Я использую " redis " для управления своими очередями
phpunit.xml:
<server name="QUEUE_CONNECTION" value="redis"/>
Но в следующем тесте имя подключения очереди возвращает " null":
/** @test */
public function is_pushed_to_queue()
{
Queue::fake();
$user = factory(User::class)->create();
$user->notify(
new EmailVerificationNotification($user)
);
$this->assertEquals(1, Queue::size());
$this->assertEquals('redis', Queue::getConnectionName());// getConnectionName returns "null"
}
ошибка phpunit:
Failed asserting that null matches expected 'redis'.
Как проверить соединение очередей" redis"?