Example #1
0
 public function testGetSetMessageMetadatumKey()
 {
     //test default value
     $this->assertSame('__queue', $this->options->getMessageMetadatumKey());
     $this->assertInstanceOf(QueueOptions::class, $this->options->setMessageMetadatumKey('foo'));
     $this->assertSame('foo', $this->options->getMessageMetadatumKey());
 }