aboutsummaryrefslogtreecommitdiffstats
path: root/tests/unit/unittest/imagecachecollectormock.h
blob: 1dd3c69f568cd74b243921202e2eb520ca04e4f3 (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
27
28
29
30
31
32
33
34
35
// Copyright (C) 2020 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 "googletest.h"

#include <imagecachecollectorinterface.h>

class ImageCacheCollectorMock : public QmlDesigner::ImageCacheCollectorInterface
{
public:
    MOCK_METHOD(void,
                start,
                (Utils::SmallStringView filePath,
                 Utils::SmallStringView state,
                 const QmlDesigner::ImageCache::AuxiliaryData &auxiliaryData,
                 ImageCacheCollectorInterface::CaptureCallback captureCallback,
                 ImageCacheCollectorInterface::AbortCallback abortCallback),
                (override));

    MOCK_METHOD(ImagePair,
                createImage,
                (Utils::SmallStringView filePath,
                 Utils::SmallStringView state,
                 const QmlDesigner::ImageCache::AuxiliaryData &auxiliaryData),
                (override));

    MOCK_METHOD(QIcon,
                createIcon,
                (Utils::SmallStringView filePath,
                 Utils::SmallStringView state,
                 const QmlDesigner::ImageCache::AuxiliaryData &auxiliaryData),
                (override));
};