blob: b1c702ede4ffaf98a2d1d951e68a6f7167d9a7a2 [file] [log] [blame]
// Copyright (c) 2013 The Chromium OS Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef CRASH_REPORTER_CRASH_COLLECTOR_TEST_H_
#define CRASH_REPORTER_CRASH_COLLECTOR_TEST_H_
#include "crash-reporter/crash_collector.h"
#include <string>
#include <vector>
#include <gmock/gmock.h>
#include <gtest/gtest.h>
class CrashCollectorMock : public CrashCollector {
public:
CrashCollectorMock();
CrashCollectorMock(
CrashDirectorySelectionMethod crash_directory_selection_method,
CrashSendingMode crash_sending_mode);
MOCK_METHOD0(SetUpDBus, void());
};
#endif // CRASH_REPORTER_CRASH_COLLECTOR_TEST_H_