Parameterize PeerConnection media tests for Unified Plan
Bug: webrtc:8765
Change-Id: I9bcd053c3e5f6524576f8da9f818de82fcd1836d
Reviewed-on: https://webrtc-review.googlesource.com/41020
Commit-Queue: Steve Anton <steveanton@webrtc.org>
Reviewed-by: Taylor Brandstetter <deadbeef@webrtc.org>
Cr-Commit-Position: refs/heads/master@{#21754}
diff --git a/rtc_base/gunit.h b/rtc_base/gunit.h
index 9ee3c72..ee62d35 100644
--- a/rtc_base/gunit.h
+++ b/rtc_base/gunit.h
@@ -157,4 +157,10 @@
} else \
GTEST_CONCAT_TOKEN_(gunit_label_, __LINE__) : ASSERT_EQ(v1, v2)
+// Usage: EXPECT_PRED_FORMAT2(AssertStartsWith, str, "prefix");
+testing::AssertionResult AssertStartsWith(const char* str_expr,
+ const char* prefix_expr,
+ const std::string& str,
+ const std::string& prefix);
+
#endif // RTC_BASE_GUNIT_H_