/**
  * Test create meeting URL
  */
 public function testCreateMeetingUrl()
 {
     $params = $this->generateCreateParams();
     $url = $this->bbb->getCreateMeetingUrl($this->getCreateParamsMock($params));
     foreach ($params as $key => $value) {
         $this->assertContains('=' . urlencode($value), $url);
     }
 }