OLD | NEW |
(Empty) | |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. |
| 4 |
| 5 #ifndef BASE_TEST_RUN_HOOK_IOS_H_ |
| 6 #define BASE_TEST_RUN_HOOK_IOS_H_ |
| 7 |
| 8 #include "base/basictypes.h" |
| 9 #include "base/test/test_suite.h" |
| 10 #include "build/build_config.h" |
| 11 |
| 12 // Provides a way of running code before gtest-based apps invoke |
| 13 // TestSuite::Run. |
| 14 class RunHook { |
| 15 public: |
| 16 static void Init(base::TestSuite* suite, int argc, char* argv[]); |
| 17 static void RunTestsFromApp(); |
| 18 private: |
| 19 DISALLOW_COPY_AND_ASSIGN(RunHook); |
| 20 }; |
| 21 |
| 22 #endif // BASE_TEST_RUN_HOOK_IOS_H_ |
OLD | NEW |