2022-08-19 15:59:36 +02:00
|
|
|
// 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
|
2020-09-16 13:44:43 +02:00
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
|
|
#include "googletest.h"
|
|
|
|
|
|
|
|
|
|
#include <imagecachecollectorinterface.h>
|
|
|
|
|
|
|
|
|
|
class ImageCacheCollectorMock : public QmlDesigner::ImageCacheCollectorInterface
|
|
|
|
|
{
|
|
|
|
|
public:
|
|
|
|
|
MOCK_METHOD(void,
|
|
|
|
|
start,
|
|
|
|
|
(Utils::SmallStringView filePath,
|
2020-11-09 16:35:00 +01:00
|
|
|
Utils::SmallStringView state,
|
2021-01-13 13:23:46 +01:00
|
|
|
const QmlDesigner::ImageCache::AuxiliaryData &auxiliaryData,
|
2020-09-16 13:44:43 +02:00
|
|
|
ImageCacheCollectorInterface::CaptureCallback captureCallback,
|
|
|
|
|
ImageCacheCollectorInterface::AbortCallback abortCallback),
|
|
|
|
|
(override));
|
2021-01-13 13:23:46 +01:00
|
|
|
|
|
|
|
|
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));
|
2020-09-16 13:44:43 +02:00
|
|
|
};
|