aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/mcusupport/test/settingshandlermock.h
blob: daa51ba835ea21cb37cfd4d21fd9a90f4e10b828 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// Copyright (C) 2022 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0+ OR GPL-3.0 WITH Qt-GPL-exception-1.0
#pragma once

#include "settingshandler.h"

#include <gmock/gmock.h>
#include <utils/filepath.h>

namespace McuSupport::Internal {

class SettingsHandlerMock : public SettingsHandler
{
public:
    SettingsHandlerMock() = default;
    ~SettingsHandlerMock() override = default;
    MOCK_METHOD(Utils::FilePath,
                getPath,
                (const QString &, QSettings::Scope, const Utils::FilePath &),
                (const, override));
    MOCK_METHOD(bool,
                write,
                (const QString &, const Utils::FilePath &, const Utils::FilePath &),
                (const, override));
}; //class SettingsHandler
} // namespace McuSupport::Internal