AutoTest: Remove dead entities

Mostly unused functions which where planned to be used or
which have become obsolete due to numerous refactorings.

Change-Id: I1c951ad7902c3180c5cc8d8d6ec2d9fa58693701
Reviewed-by: David Schulz <david.schulz@qt.io>
Reviewed-by: Qt CI Bot <qt_ci_bot@qt-project.org>
This commit is contained in:
Christian Stenger
2023-10-30 09:05:35 +01:00
parent 0f91eb8de1
commit 55082abed0
10 changed files with 0 additions and 42 deletions

View File

@@ -283,11 +283,6 @@ void TestConfiguration::setProjectFile(const FilePath &projectFile)
m_projectFile = projectFile;
}
void TestConfiguration::setBuildDirectory(const FilePath &buildDirectory)
{
m_buildDir = buildDirectory;
}
void TestConfiguration::setInternalTarget(const QString &target)
{
m_buildTargets.clear();
@@ -309,9 +304,4 @@ bool DebuggableTestConfiguration::isDebugRunMode() const
return m_runMode == TestRunMode::Debug || m_runMode == TestRunMode::DebugWithoutDeploy;
}
ITestFramework *TestConfiguration::framework() const
{
return static_cast<ITestFramework *>(testBase());
}
} // namespace Autotest