aboutsummaryrefslogtreecommitdiffstats
path: root/tests/unit/unittest/abstractviewmock.h
blob: 5d3ba2a49e461fe3607dda094f760c61ef16c218 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// 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 <qmldesigner/designercore/include/abstractview.h>

class AbstractViewMock : public QmlDesigner::AbstractView
{
public:
    MOCK_METHOD(void, nodeOrderChanged, (const QmlDesigner::NodeListProperty &listProperty), (override));
};