Home
last modified time | relevance | path

Searched refs:rtpContextParams1 (Results 1 – 2 of 2) sorted by relevance

/packages/modules/ImsMedia/tests/native/service/src/com/android/telephony/imsmedia/lib/libimsmedia/config/
DRtpContextParamsTest.cpp18 RtpContextParams rtpContextParams1(100, 200, 300); in TEST() local
19 EXPECT_EQ(rtpContextParams1.getSsrc(), 100); in TEST()
20 EXPECT_EQ(rtpContextParams1.getTimestamp(), 200); in TEST()
21 EXPECT_EQ(rtpContextParams1.getSequenceNumber(), 300); in TEST()
23 RtpContextParams rtpContextParams2(rtpContextParams1); in TEST()
31 RtpContextParams rtpContextParams1(10, 20, 30); in TEST() local
34 EXPECT_EQ(rtpContextParams1 == rtpContextParams2, false); in TEST()
35 EXPECT_EQ(rtpContextParams1 != rtpContextParams2, true); in TEST()
37 rtpContextParams2 = rtpContextParams1; in TEST()
42 EXPECT_EQ(rtpContextParams1 == rtpContextParams2, true); in TEST()
[all …]
/packages/modules/ImsMedia/tests/unit/src/com/android/telephony/imsmedia/
DRtpContextParamsTest.java63 RtpContextParams rtpContextParams1 = createRtpContextParams(); in testEqual() local
66 assertThat(rtpContextParams1).isEqualTo(rtpContextParams2); in testEqual()
71 RtpContextParams rtpContextParams1 = createRtpContextParams(); in testNotEqual() local
79 assertThat(rtpContextParams1).isNotEqualTo(rtpContextParams2); in testNotEqual()
87 assertThat(rtpContextParams1).isNotEqualTo(rtpContextParams3); in testNotEqual()
95 assertThat(rtpContextParams1).isNotEqualTo(rtpContextParams4); in testNotEqual()