blob: 777495a3d20e006c1b5a0f08e4d063ce295a83b2 [file] [log] [blame]
[email protected]bf0ece42011-10-18 01:08:351// 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
15class 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_