Skip to content

Commit a2f074b

Browse files
committed
increase code coverage
1 parent 8350be3 commit a2f074b

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/OpenTok/SipCall.php

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,6 @@
1717
* The ID of the stream connected to the OpenTok session streaming the audio received from
1818
* the SIP call.
1919
*
20-
* @property bool $observeForceMute
21-
* Whether the SIP call honors
22-
* <a href="https://tokbox.com/developer/guides/moderation/#force_mute">force mute moderation</a>.
2320
*/
2421
class SipCall
2522
{

tests/OpenTokTest/SipCallTest.php

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,5 +17,8 @@ public function testSipCallAttributes(): void
1717
$sipCall = new SipCall($sipCallData);
1818

1919
$this->assertEquals('1_MX4xMjM0NTY3OH4', $sipCall->id);
20+
$this->assertEquals('VGh1IEZlYiAyNyAwNDozODozMSBQU1QgMjAxNH4wLjI0NDgyMjI', $sipCall->connectionId);
21+
$this->assertEquals('0123456789abcdef0123456789abcdef0123456789', $sipCall->streamId);
22+
$this->assertNull($sipCall->observeForceMute);
2023
}
2124
}

0 commit comments

Comments
 (0)