OLD | NEW |
---|---|
(Empty) | |
1 // Copyright 2014 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 #include "base/bind.h" | |
6 #include "base/macros.h" | |
7 #include "base/test/launcher/unit_test_launcher.h" | |
8 #include "base/test/test_suite.h" | |
9 | |
10 namespace { | |
11 | |
12 class ExtensionsTestSuite : public base::TestSuite { | |
13 public: | |
14 ExtensionsTestSuite(int argc, char** argv); | |
15 | |
16 protected: | |
17 // base::TestSuite: | |
18 virtual void Initialize() OVERRIDE; | |
19 virtual void Shutdown() OVERRIDE; | |
20 | |
21 private: | |
22 DISALLOW_COPY_AND_ASSIGN(ExtensionsTestSuite); | |
23 }; | |
24 | |
25 ExtensionsTestSuite::ExtensionsTestSuite(int argc, char** argv) | |
26 : base::TestSuite(argc, argv) {} | |
27 | |
28 void ExtensionsTestSuite::Initialize() { | |
Yoyo Zhou
2014/04/07 23:20:03
It doesn't seem like these are doing anything for
| |
29 base::TestSuite::Initialize(); | |
30 } | |
31 | |
32 void ExtensionsTestSuite::Shutdown() { | |
33 base::TestSuite::Shutdown(); | |
34 } | |
35 | |
36 } // namespace | |
37 | |
38 int main(int argc, char** argv) { | |
39 ExtensionsTestSuite test_suite(argc, argv); | |
40 | |
41 return base::LaunchUnitTests(argc, | |
42 argv, | |
43 base::Bind(&ExtensionsTestSuite::Run, | |
44 base::Unretained(&test_suite))); | |
45 } | |
OLD | NEW |