blob: a298fec86d740142b1b2a255603c22278aff0874 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
// Copyright (C) 2020 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
#pragma once
#include "../testconfiguration.h"
namespace Autotest {
namespace Internal {
class CTestConfiguration final : public Autotest::TestToolConfiguration
{
public:
explicit CTestConfiguration(ITestBase *testBase);
TestOutputReader *createOutputReader(Utils::Process *app) const final;
};
} // namespace Internal
} // namespace Autotest
|