Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 // Copyright (c) 2011 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 <string> | |
|
Paweł Hajdan Jr.
2011/10/19 08:46:39
What's that? It's included twice in this file, and
| |
| 6 | |
| 7 #ifndef COURGETTE_BASE_TEST_UNITTEST_H_ | |
| 8 #define COURGETTE_BASE_TEST_UNITTEST_H_ | |
| 9 | |
| 10 #include <string> | |
| 11 | |
| 12 #include "base/file_util.h" | |
| 13 #include "testing/gtest/include/gtest/gtest.h" | |
| 14 | |
| 15 class BaseTest : public testing::Test { | |
| 16 public: | |
| 17 std::string FileContents(const char* file_name) const; | |
| 18 | |
| 19 private: | |
| 20 virtual void SetUp(); | |
| 21 virtual void TearDown(); | |
| 22 | |
| 23 FilePath test_dir_; | |
| 24 }; | |
| 25 | |
| 26 #endif // COURGETTE_BASE_TEST_UNITTEST_H_ | |
|
Paweł Hajdan Jr.
2011/10/19 08:46:39
nit: Two spaces before // please.
| |
| OLD | NEW |