OLD | NEW |
(Empty) | |
| 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 |
| 3 // found in the LICENSE file. |
| 4 |
| 5 #ifndef MOJO_PUBLIC_CPP_BINDINGS_TESTS_WTF_TEST_BASE_H_ |
| 6 #define MOJO_PUBLIC_CPP_BINDINGS_TESTS_WTF_TEST_BASE_H_ |
| 7 |
| 8 #include "base/macros.h" |
| 9 #include "testing/gtest/include/gtest/gtest.h" |
| 10 |
| 11 namespace mojo { |
| 12 namespace test { |
| 13 |
| 14 class WTFTestBase : public testing::Test { |
| 15 public: |
| 16 ~WTFTestBase() override; |
| 17 |
| 18 protected: |
| 19 WTFTestBase(); |
| 20 |
| 21 // testing::Test overrides: |
| 22 void SetUp() override; |
| 23 |
| 24 DISALLOW_COPY_AND_ASSIGN(WTFTestBase); |
| 25 }; |
| 26 |
| 27 } // namespace test |
| 28 } // namespace mojo |
| 29 |
| 30 #endif // MOJO_PUBLIC_CPP_BINDINGS_TESTS_WTF_TEST_BASE_H_ |
OLD | NEW |