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> | |
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 void SetUp(); | |
Michael Krebs
2011/10/17 21:22:14
I believe this and TearDown() should be marked as
dgarrett
2011/10/17 21:50:59
Done.
| |
21 void TearDown(); | |
22 | |
23 FilePath test_dir_; | |
24 }; | |
25 | |
26 #endif // COURGETTE_BASE_TEST_UNITTEST_H_ | |
OLD | NEW |