We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1db14f7 commit 7d440d6Copy full SHA for 7d440d6
1 file changed
tests/unit/BigBlueButtonTest.php
@@ -346,4 +346,15 @@ public function testUpdateRecordingsUrl()
346
$this->assertStringContainsString(\rawurlencode($key) . '=' . rawurlencode($value), $url);
347
}
348
349
+
350
+ public function testBuildUrl(): void
351
+ {
352
+ $bigBlueButton = new BigBlueButton('https://bbb.example/bigbluebutton', 'S3cr3t');
353
354
+ $this->assertSame(
355
+ 'https://bbb.example/bigbluebuttonapi/foo?foo=bar&baz=bazinga&checksum=694ad46bc5a79a572bab6c8b9a939527c39ac7f6',
356
+ $bigBlueButton->buildUrl('foo', 'foo=bar&baz=bazinga'),
357
+ 'URL is not ok'
358
+ );
359
+ }
360
0 commit comments