aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/autotest/catch/catchtestparser.h
blob: 8b72073204b9fd8c3f20374fb8102c28f9e967b4 (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
// Copyright (C) 2019 Jochen Seemann
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0

#pragma once

#include "catchtreeitem.h"
#include "../itestparser.h"

namespace Autotest {
namespace Internal {

class CatchParseResult : public TestParseResult
{
public:
    explicit CatchParseResult(ITestFramework *framework)
        : TestParseResult(framework) {}
    TestTreeItem *createTestTreeItem() const override;
    CatchTreeItem::TestStates states;
};

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

} // namespace Internal
} // namespace Autotest