2022-08-19 15:59:36 +02:00
|
|
|
// Copyright (C) 2019 The Qt Company Ltd.
|
2022-12-21 10:12:09 +01:00
|
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
|
2018-12-07 10:00:23 +01:00
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
|
|
#include "../testresult.h"
|
|
|
|
|
|
|
|
|
|
namespace Autotest {
|
|
|
|
|
namespace Internal {
|
|
|
|
|
|
2020-04-16 14:38:36 +02:00
|
|
|
class BoostTestTreeItem;
|
|
|
|
|
|
2018-12-07 10:00:23 +01:00
|
|
|
class BoostTestResult : public TestResult
|
|
|
|
|
{
|
|
|
|
|
public:
|
2023-01-13 17:31:35 +01:00
|
|
|
BoostTestResult(const QString &id, const QString &name, const Utils::FilePath &projectFile,
|
|
|
|
|
const QString &testCaseName = {}, const QString &testSuiteName = {});
|
2018-12-07 10:00:23 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
} // namespace Internal
|
|
|
|
|
} // namespace Autotest
|