Update V8 to version 3.28.54 (based on bleeding_edge revision r22797).
[chromium-blink-merge.git] / courgette / base_test_unittest.h
blob7dd74a051640b8c8792e3a68483efb5e1537a732
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.
5 #ifndef COURGETTE_BASE_TEST_UNITTEST_H_
6 #define COURGETTE_BASE_TEST_UNITTEST_H_
8 #include <list>
9 #include <string>
11 #include "base/files/file_path.h"
12 #include "testing/gtest/include/gtest/gtest.h"
14 class BaseTest : public testing::Test {
15 public:
16 std::string FileContents(const char* file_name) const;
18 // Pass a list of strings, and get back the concatenated contents
19 // of each of the mentioned files.
20 std::string FilesContents(std::list<std::string> file_names) const;
22 private:
23 virtual void SetUp();
24 virtual void TearDown();
26 base::FilePath test_dir_;
29 #endif // COURGETTE_BASE_TEST_UNITTEST_H_