OLD | NEW |
1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef BLIMP_HELIUM_HELIUM_TEST_H_ | 5 #ifndef BLIMP_HELIUM_HELIUM_TEST_H_ |
6 #define BLIMP_HELIUM_HELIUM_TEST_H_ | 6 #define BLIMP_HELIUM_HELIUM_TEST_H_ |
7 | 7 |
8 #include "base/at_exit.h" | 8 #include "base/at_exit.h" |
9 #include "base/macros.h" | 9 #include "base/macros.h" |
10 #include "testing/gtest/include/gtest/gtest.h" | 10 #include "testing/gtest/include/gtest/gtest.h" |
11 | 11 |
12 namespace blimp { | 12 namespace blimp { |
13 namespace helium { | 13 namespace helium { |
14 namespace test { | |
15 | 14 |
16 class HeliumTest : public ::testing::Test { | 15 class HeliumTest : public ::testing::Test { |
17 public: | 16 public: |
18 HeliumTest() {} | 17 HeliumTest() {} |
19 ~HeliumTest() override {} | 18 ~HeliumTest() override {} |
20 | 19 |
21 private: | 20 private: |
22 base::ShadowingAtExitManager at_exit_manager_; | 21 base::ShadowingAtExitManager at_exit_manager_; |
23 | 22 |
24 DISALLOW_COPY_AND_ASSIGN(HeliumTest); | 23 DISALLOW_COPY_AND_ASSIGN(HeliumTest); |
25 }; | 24 }; |
26 | 25 |
27 } // namespace test | |
28 } // namespace helium | 26 } // namespace helium |
29 } // namespace blimp | 27 } // namespace blimp |
30 | 28 |
31 #endif // BLIMP_HELIUM_HELIUM_TEST_H_ | 29 #endif // BLIMP_HELIUM_HELIUM_TEST_H_ |
OLD | NEW |