Example #1
0
 public function testGetsetPollingInterval()
 {
     //test default value
     $this->assertSame(1, $this->options->getPollingInterval());
     $this->assertInstanceOf(QueueOptions::class, $this->options->setPollingInterval(10));
     $this->assertSame(10, $this->options->getPollingInterval());
 }