aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/autotest/gtest/gtestparser.h
blob: 52febe6b8900517d989e1d74678801e5351d7088 (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
// Copyright (C) 2016 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0

#pragma once

#include "../itestparser.h"

namespace Autotest {
namespace Internal {

class GTestParseResult : public TestParseResult
{
public:
    explicit GTestParseResult(ITestFramework *framework) : TestParseResult(framework) {}
    TestTreeItem *createTestTreeItem() const override;
    bool parameterized = false;
    bool typed = false;
    bool disabled = false;
};

class GTestParser : public CppParser
{
public:
    explicit GTestParser(ITestFramework *framework) : CppParser(framework) {}
    bool processDocument(QPromise<TestParseResultPtr> &futureInterface,
                         const Utils::FilePath &fileName) override;
};

} // namespace Internal
} // namespace Autotest