12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- #ifndef TEST_TEST_MAIN_LIB_H_
- #define TEST_TEST_MAIN_LIB_H_
- #include <memory>
- #include <string>
- namespace webrtc {
- class TestMain {
- public:
- virtual ~TestMain() {}
- static std::unique_ptr<TestMain> Create();
-
-
-
- virtual int Init() = 0;
-
- virtual int Init(int* argc, char* argv[]) = 0;
-
- virtual int Run(int argc, char* argv[]) = 0;
- protected:
- TestMain() = default;
- std::string field_trials_;
- };
- }
- #endif
|