aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/autotest/boost/boosttestparser.h
blob: 3ea67815c9519cdcf07c96b25ab08b119e06105a (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) 2019 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"
#include "boosttesttreeitem.h"

namespace Autotest {
namespace Internal {

class BoostTestParseResult : public TestParseResult
{
public:
    explicit BoostTestParseResult(ITestFramework *framework) : TestParseResult(framework) {}
    TestTreeItem *createTestTreeItem() const override;
    // TODO special attributes/states (labeled, timeout,...?)
    BoostTestTreeItem::TestStates state = BoostTestTreeItem::Enabled;
};

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

} // namespace Internal
} // namespace Autotest