コード例 #1
0
ファイル: QueueConfigTest.php プロジェクト: lightster/hodor
 /**
  * @covers ::__construct
  * @covers ::getMessageQueueConfig
  * @covers ::<private>
  * @expectedException Exception
  */
 public function testMessageQueueConfigForUnknownConfigThrowsAnException()
 {
     $config = new QueueConfig(['worker_queues' => []]);
     $config->getMessageQueueConfig('worker-missing');
 }