Artem Titov | 40a7a35 | 2018-10-15 15:25:34 +0200 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (c) 2018 The WebRTC project authors. All Rights Reserved. |
| 3 | * |
| 4 | * Use of this source code is governed by a BSD-style license |
| 5 | * that can be found in the LICENSE file in the root of the source |
| 6 | * tree. An additional intellectual property rights grant can be found |
| 7 | * in the file PATENTS. All contributing project authors may |
| 8 | * be found in the AUTHORS file in the root of the source tree. |
| 9 | */ |
| 10 | #ifndef TEST_TEST_MAIN_LIB_H_ |
| 11 | #define TEST_TEST_MAIN_LIB_H_ |
| 12 | |
| 13 | #include <memory> |
| 14 | |
| 15 | namespace webrtc { |
| 16 | |
| 17 | // Class to initialize test environment and run tests. |
| 18 | class TestMain { |
| 19 | public: |
| 20 | virtual ~TestMain() {} |
| 21 | |
| 22 | static std::unique_ptr<TestMain> Create(); |
| 23 | |
| 24 | // Initializes test environment. Clients can add their own initialization |
| 25 | // steps after call to this method and before running tests. |
| 26 | // Returns 0 if initialization was successful and non 0 otherwise. |
Artem Titov | b5541a0 | 2018-10-17 17:37:47 +0200 | [diff] [blame] | 27 | virtual int Init(int* argc, char* argv[]) = 0; |
Artem Titov | 40a7a35 | 2018-10-15 15:25:34 +0200 | [diff] [blame] | 28 | |
| 29 | // Runs test end return result error code. 0 - no errors. |
| 30 | virtual int Run(int argc, char* argv[]) = 0; |
| 31 | |
| 32 | protected: |
| 33 | TestMain() = default; |
| 34 | }; |
| 35 | |
| 36 | } // namespace webrtc |
| 37 | |
| 38 | #endif // TEST_TEST_MAIN_LIB_H_ |