public function testGetRecordingsParameters()
 {
     $getRecordings = new GetRecordingsParameters();
     $getRecordings->setMeetingId($meetingId = $this->faker->uuid);
     $getRecordings->setRecordId($recordId = $this->faker->uuid);
     $getRecordings->setState($state = 'published');
     $getRecordings->addMeta($meta = 'name', $name = $this->faker->firstName);
     $params = $getRecordings->getHTTPQuery();
     $this->assertEquals($meetingId, $getRecordings->getMeetingId());
     $this->assertEquals($recordId, $getRecordings->getRecordId());
     $this->assertEquals($state, $getRecordings->getState());
     $this->assertContains('meta_' . $meta . '=' . $name, $params);
 }
 public function testGetRecordingsParameters()
 {
     $meetingId = $this->faker->uuid;
     $getRecordings = new GetRecordingsParameters($meetingId);
     $this->assertEquals($meetingId, $getRecordings->getMeetingId());
 }