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

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

Issue 16820008: GTTF: Move core parts of test_launcher down to base. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fixes Created 7 years, 6 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_TEST_LAUNCHER_H_
6 #define BASE_TEST_TEST_LAUNCHER_H_
7
8 #include "base/basictypes.h"
9 #include "base/compiler_specific.h"
10
11 namespace testing {
12 class TestCase;
13 class TestInfo;
14 }
15
16 namespace base {
17
18 // Constants for GTest command-line flags.
19 extern const char kGTestFilterFlag[];
20 extern const char kGTestListTestsFlag[];
21 extern const char kGTestRepeatFlag[];
22 extern const char kGTestRunDisabledTestsFlag[];
23 extern const char kGTestOutputFlag[];
24
25 // Interface for use with LaunchTests that abstracts away exact details
26 // which tests and how are run.
27 class TestLauncherDelegate {
28 public:
29 // Called before any other method. Allows the delegate to perform
30 // initialization, and informs it about sharding parameters.
31 // Should return true on success.
32 virtual bool Initialize(int total_shards, int shard_index) = 0;
33
34 // Called before a test is considered for running. If it returns false,
35 // the test is not run. If it returns true, the test will be run provided
36 // it is part of the current shard.
37 virtual bool ShouldRunTest(const testing::TestCase* test_case,
38 const testing::TestInfo* test_info) = 0;
39
40 // Called to make the delegate run specified test. Should return true
41 // on success.
42 virtual bool RunTest(const testing::TestCase* test_case,
43 const testing::TestInfo* test_info) = 0;
44
45 protected:
46 virtual ~TestLauncherDelegate();
47 };
48
49 // Launches GTest-based tests from the current executable
50 // using |launcher_delegate|.
51 int LaunchTests(TestLauncherDelegate* launcher_delegate,
52 int argc,
53 char** argv) WARN_UNUSED_RESULT;
54
55 } // namespace base
56
57 #endif // BASE_TEST_TEST_LAUNCHER_H_
OLDNEW
« no previous file with comments | « base/base.gyp ('k') | base/test/test_launcher.cc » ('j') | content/public/test/test_launcher.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698