1 // Copyright (c) 2012 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.
5 #ifndef BASE_TEST_TEST_SUITE_H_
6 #define BASE_TEST_TEST_SUITE_H_
8 // Defines a basic test suite framework for running gtest based tests. You can
9 // instantiate this class in your main function and call its Run method to run
10 // any gtest based tests that are linked into your executable.
14 #include "base/at_exit.h"
15 #include "base/memory/scoped_ptr.h"
16 #include "base/test/trace_to_file.h"
24 // Instantiates TestSuite, runs it and returns exit code.
25 int RunUnitTestsUsingBaseTestSuite(int argc
, char **argv
);
29 // Match function used by the GetTestCount method.
30 typedef bool (*TestMatch
)(const testing::TestInfo
&);
32 TestSuite(int argc
, char** argv
);
34 TestSuite(int argc
, wchar_t** argv
);
35 #endif // defined(OS_WIN)
38 // Returns true if the test is marked as "MAYBE_".
39 // When using different prefixes depending on platform, we use MAYBE_ and
40 // preprocessor directives to replace MAYBE_ with the target prefix.
41 static bool IsMarkedMaybe(const testing::TestInfo
& test
);
43 void CatchMaybeTests();
45 void ResetCommandLine();
47 void AddTestLauncherResultPrinter();
52 // This constructor is only accessible to specialized test suite
53 // implementations which need to control the creation of an AtExitManager
54 // instance for the duration of the test.
55 TestSuite(int argc
, char** argv
, bool create_at_exit_manager
);
57 // By default fatal log messages (e.g. from DCHECKs) result in error dialogs
58 // which gum up buildbots. Use a minimalistic assert handler which just
59 // terminates the process.
60 static void UnitTestAssertHandler(const std::string
& str
);
62 // Disable crash dialogs so that it doesn't gum up the buildbot
63 virtual void SuppressErrorDialogs();
65 // Override these for custom initialization and shutdown handling. Use these
66 // instead of putting complex code in your constructor/destructor.
68 virtual void Initialize();
69 virtual void Shutdown();
71 // Make sure that we setup an AtExitManager so Singleton objects will be
73 scoped_ptr
<base::AtExitManager
> at_exit_manager_
;
76 void InitializeFromCommandLine(int argc
, char** argv
);
78 void InitializeFromCommandLine(int argc
, wchar_t** argv
);
79 #endif // defined(OS_WIN)
81 // Basic initialization for the test suite happens here.
82 void PreInitialize(bool create_at_exit_manager
);
84 test::TraceToFile trace_to_file_
;
86 bool initialized_command_line_
;
88 DISALLOW_COPY_AND_ASSIGN(TestSuite
);
93 // TODO(brettw) remove this. This is a temporary hack to allow WebKit to compile
94 // until we can update it to use "base::" (preventing a two-sided patch).
95 using base::TestSuite
;
97 #endif // BASE_TEST_TEST_SUITE_H_