| 6908 | "a=rtpmap:0 PCMU/8000\r\n"; |
| 6909 | |
| 6910 | TEST(sdp, parse_valid_sdp_msg) { |
| 6911 | ASSERT_EQ(find_in_sdp("c=IN IP4 ", test_sdp_v4), "127.0.0.1"); |
| 6912 | ASSERT_EQ(find_in_sdp("c=IN IP6 ", test_sdp_v6), "::1"); |
| 6913 | ASSERT_EQ(find_in_sdp("m=audio ", test_sdp_v4), "12345"); |
| 6914 | ASSERT_EQ(find_in_sdp("m=audio ", test_sdp_v6), "12345"); |
| 6915 | } |
| 6916 | |
| 6917 | TEST(sdp, parse_invalid_sdp_msg) { |
| 6918 | ASSERT_EQ(find_in_sdp("c=IN IP4 ", test_sdp_v6), ""); |
nothing calls this directly
no test coverage detected