aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/cppeditor/cpppointerdeclarationformatter_test.h
blob: 502756f206257edb2576953c943986c2d9d808ca (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
// Copyright (C) 2021 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0

#pragma once

#include <QObject>

namespace CppEditor::Internal {

class PointerDeclarationFormatterTest : public QObject
{
    Q_OBJECT

private slots:
    void testInSimpledeclarations();
    void testInSimpledeclarations_data();
    void testInControlflowstatements();
    void testInControlflowstatements_data();
    void testMultipleDeclarators();
    void testMultipleDeclarators_data();
    void testMultipleMatches();
    void testMultipleMatches_data();
    void testMacros();
    void testMacros_data();
};

} // namespace CppEditor::Internal