OLD | NEW |
---|---|
(Empty) | |
1 // Copyright (c) 2016 The Chromium Authors. All rights reserved. | |
nduca
2016/09/28 19:46:42
At least from my perspective, this file should be
| |
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 COMPONENTS_TEST_COMPONENTS_TEST_SUIT_H_ | |
6 #define COMPONENTS_TEST_COMPONENTS_TEST_SUIT_H_ | |
7 | |
8 #include <memory> | |
9 | |
10 #include "base/macros.h" | |
11 #include "base/test/launcher/unit_test_launcher.h" | |
12 #include "base/test/test_suite.h" | |
13 | |
14 class ComponentsTestSuite : public base::TestSuite { | |
15 public: | |
16 ComponentsTestSuite(int argc, char** argv); | |
17 void Initialize() override; | |
18 void Shutdown() override; | |
19 | |
20 private: | |
21 DISALLOW_COPY_AND_ASSIGN(ComponentsTestSuite); | |
22 }; | |
23 | |
24 // Does some more preparations before launch | |
25 base::RunTestSuiteCallback CreateCallbackForLaunch( | |
26 std::unique_ptr<ComponentsTestSuite> test_suite); | |
27 | |
28 #endif // COMPONENTS_TEST_COMPONENTS_TEST_SUIT_H_ | |
OLD | NEW |