chromium/components/history/core/test/history_unittest_base.h

// Copyright 2011 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#ifndef COMPONENTS_HISTORY_CORE_TEST_HISTORY_UNITTEST_BASE_H_
#define COMPONENTS_HISTORY_CORE_TEST_HISTORY_UNITTEST_BASE_H_

#include "testing/gtest/include/gtest/gtest.h"

namespace base {
class FilePath;
}

namespace history {
// A base class for a history unit test. It provides the common test methods.
//
class HistoryUnitTestBase : public testing::Test {};

}  // namespace history

#endif  // COMPONENTS_HISTORY_CORE_TEST_HISTORY_UNITTEST_BASE_H_