AutoTest: Shuffle namespaces for clearer separation

Change-Id: I6ac440c6d72c3d0dbcd75907f8a6ae756f3cf5ee
Reviewed-by: hjk <hjk@qt.io>
This commit is contained in:
Christian Stenger
2019-08-19 10:55:32 +02:00
parent df93c6c5a7
commit 03b80025a9
27 changed files with 56 additions and 66 deletions

View File

@@ -42,10 +42,12 @@ QT_END_NAMESPACE
namespace Autotest {
namespace Internal {
class TestRunConfiguration;
} // namespace Internal
class TestOutputReader;
class TestResult;
class TestRunConfiguration;
enum class TestRunMode;
using TestResultPtr = QSharedPointer<TestResult>;
@@ -82,7 +84,7 @@ public:
ProjectExplorer::Project *project() const { return m_project.data(); }
QSet<QString> internalTargets() const { return m_buildTargets; }
ProjectExplorer::RunConfiguration *originalRunConfiguration() const { return m_origRunConfig; }
TestRunConfiguration *runConfiguration() const { return m_runConfig; }
Internal::TestRunConfiguration *runConfiguration() const { return m_runConfig; }
bool hasExecutable() const;
bool isDeduced() const { return m_deducedConfiguration; }
QString runConfigDisplayName() const { return m_deducedConfiguration ? m_deducedFrom
@@ -102,7 +104,7 @@ private:
QString m_deducedFrom;
QPointer<ProjectExplorer::Project> m_project;
bool m_deducedConfiguration = false;
TestRunConfiguration *m_runConfig = nullptr;
Internal::TestRunConfiguration *m_runConfig = nullptr;
QSet<QString> m_buildTargets;
ProjectExplorer::RunConfiguration *m_origRunConfig = nullptr;
ProjectExplorer::Runnable m_runnable;
@@ -124,5 +126,4 @@ private:
bool m_mixedDebugging = false;
};
} // namespace Internal
} // namespace Autotest