blob: 51d87563bb09bac6bc3f61c34bba7b899319b954 [file] [log] [blame]
// Copyright 2014 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_KERNEL_COLLECTOR_TEST_H_
#define CRASH_REPORTER_KERNEL_COLLECTOR_TEST_H_
#include "crash-reporter/kernel_collector.h"
#include <gmock/gmock.h>
#include <gtest/gtest.h>
class KernelCollectorMock : public KernelCollector {
public:
MOCK_METHOD(bool, DumpDirMounted, (), (override));
MOCK_METHOD(void, SetUpDBus, (), (override));
};
#endif // CRASH_REPORTER_KERNEL_COLLECTOR_TEST_H_