Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(25)

Side by Side Diff: base/test/run_hook_ios.h

Issue 12321117: Refactor MainHook into TestSuite. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: add missing test_suite changes Created 7 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
(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_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698