12345678910111213141516171819202122232425262728293031323334 |
- #ifndef TEST_IOS_TEST_SUPPORT_H_
- #define TEST_IOS_TEST_SUPPORT_H_
- #include <string>
- #include <vector>
- #include "absl/types/optional.h"
- namespace rtc {
- namespace test {
- void RunTestsFromIOSApp();
- void InitTestSuite(int (*test_suite)(void),
- int argc,
- char* argv[],
- bool save_chartjson_result,
- absl::optional<std::vector<std::string>> metrics_to_plot);
- }
- }
- #endif
|