-
Notifications
You must be signed in to change notification settings - Fork 315
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* UT inc * transport stats * signaling deserialize unknown * exclude samples * more metrics coverage * Sdp lib * fix skt tst bug * Improve deserialize and sdp api test * RB ut improvement * more uts * sig api * signaling api tests * Stun * more stun * rtp * more signaling * update encoder stats * Metrics coverage * nat behavior ut * more stun * serialize * twcc on callback * FIR test * enable ice stats * more rtcp * JB test * metrics * CleanUp * Comments * Remove config
- Loading branch information
Showing
27 changed files
with
787 additions
and
93 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
#include "WebRTCClientTestFixture.h" | ||
|
||
namespace com { | ||
namespace amazonaws { | ||
namespace kinesis { | ||
namespace video { | ||
namespace webrtcclient { | ||
|
||
class CryptoApiTest : public WebRtcClientTestBase { | ||
}; | ||
|
||
TEST_F(CryptoApiTest, createRtcCertificateApiTest) | ||
{ | ||
PRtcCertificate pRtcCertificate = NULL; | ||
EXPECT_EQ(createRtcCertificate(NULL), STATUS_NULL_ARG); | ||
EXPECT_EQ(createRtcCertificate(&pRtcCertificate), STATUS_SUCCESS); | ||
EXPECT_TRUE(pRtcCertificate != NULL); | ||
EXPECT_EQ(freeRtcCertificate(NULL), STATUS_SUCCESS); | ||
EXPECT_EQ(freeRtcCertificate(pRtcCertificate), STATUS_SUCCESS); | ||
} | ||
|
||
} // namespace webrtcclient | ||
} // namespace video | ||
} // namespace kinesis | ||
} // namespace amazonaws | ||
} // namespace com |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.