2014-10-07 15:51:02 +02:00
|
|
|
/****************************************************************************
|
|
|
|
|
**
|
2015-02-19 08:09:02 +01:00
|
|
|
** Copyright (C) 2015 The Qt Company Ltd
|
2014-10-07 15:51:02 +02:00
|
|
|
** All rights reserved.
|
2015-02-19 08:09:02 +01:00
|
|
|
** For any questions to The Qt Company, please use contact form at
|
|
|
|
|
** http://www.qt.io/contact-us
|
2014-10-07 15:51:02 +02:00
|
|
|
**
|
|
|
|
|
** This file is part of the Qt Creator Enterprise Auto Test Add-on.
|
|
|
|
|
**
|
|
|
|
|
** Licensees holding valid Qt Enterprise licenses may use this file in
|
|
|
|
|
** accordance with the Qt Enterprise License Agreement provided with the
|
|
|
|
|
** Software or, alternatively, in accordance with the terms contained in
|
2015-02-19 08:09:02 +01:00
|
|
|
** a written agreement between you and The Qt Company.
|
2014-10-07 15:51:02 +02:00
|
|
|
**
|
|
|
|
|
** If you have questions regarding the use of this file, please use
|
2015-02-19 08:09:02 +01:00
|
|
|
** contact form at http://www.qt.io/contact-us
|
2014-10-07 15:51:02 +02:00
|
|
|
**
|
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
|
|
#include "testconfiguration.h"
|
|
|
|
|
|
|
|
|
|
#include <projectexplorer/project.h>
|
|
|
|
|
|
|
|
|
|
namespace Autotest {
|
|
|
|
|
namespace Internal {
|
|
|
|
|
|
|
|
|
|
TestConfiguration::TestConfiguration(const QString &testClass, const QStringList &testCases,
|
2014-11-03 08:30:22 +01:00
|
|
|
int testCaseCount, QObject *parent)
|
2014-10-07 15:51:02 +02:00
|
|
|
: QObject(parent),
|
|
|
|
|
m_testClass(testClass),
|
|
|
|
|
m_testCases(testCases),
|
2014-11-03 08:30:22 +01:00
|
|
|
m_testCaseCount(testCaseCount),
|
2015-01-07 09:33:57 +01:00
|
|
|
m_unnamedOnly(false),
|
2015-02-17 10:33:35 +01:00
|
|
|
m_project(0),
|
|
|
|
|
m_guessedConfiguration(false)
|
2014-10-07 15:51:02 +02:00
|
|
|
{
|
2014-11-03 08:30:22 +01:00
|
|
|
if (testCases.size() != 0) {
|
|
|
|
|
m_testCaseCount = testCases.size();
|
|
|
|
|
}
|
2014-10-07 15:51:02 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
TestConfiguration::~TestConfiguration()
|
|
|
|
|
{
|
|
|
|
|
m_testCases.clear();
|
|
|
|
|
}
|
|
|
|
|
|
2014-11-06 16:01:06 +01:00
|
|
|
/**
|
|
|
|
|
* @brief sets the test cases for this test configuration.
|
|
|
|
|
*
|
|
|
|
|
* Watch out for special handling of test configurations, because this method also
|
|
|
|
|
* updates the test case count to the current size of \a testCases.
|
|
|
|
|
*
|
|
|
|
|
* @param testCases list of names of the test functions / test cases
|
|
|
|
|
*/
|
|
|
|
|
void TestConfiguration::setTestCases(const QStringList &testCases)
|
|
|
|
|
{
|
|
|
|
|
m_testCases.clear();
|
|
|
|
|
m_testCases << testCases;
|
|
|
|
|
m_testCaseCount = m_testCases.size();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void TestConfiguration::setTestCaseCount(int count)
|
|
|
|
|
{
|
|
|
|
|
m_testCaseCount = count;
|
|
|
|
|
}
|
|
|
|
|
|
2014-10-07 15:51:02 +02:00
|
|
|
void TestConfiguration::setTargetFile(const QString &targetFile)
|
|
|
|
|
{
|
|
|
|
|
m_targetFile = targetFile;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void TestConfiguration::setTargetName(const QString &targetName)
|
|
|
|
|
{
|
|
|
|
|
m_targetName = targetName;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void TestConfiguration::setProFile(const QString &proFile)
|
|
|
|
|
{
|
|
|
|
|
m_proFile = proFile;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void TestConfiguration::setWorkingDirectory(const QString &workingDirectory)
|
|
|
|
|
{
|
|
|
|
|
m_workingDir = workingDirectory;
|
|
|
|
|
}
|
|
|
|
|
|
2014-11-13 12:31:58 +01:00
|
|
|
void TestConfiguration::setDisplayName(const QString &displayName)
|
|
|
|
|
{
|
|
|
|
|
m_displayName = displayName;
|
|
|
|
|
}
|
|
|
|
|
|
2014-10-07 15:51:02 +02:00
|
|
|
void TestConfiguration::setEnvironment(const Utils::Environment &env)
|
|
|
|
|
{
|
|
|
|
|
m_environment = env;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void TestConfiguration::setProject(ProjectExplorer::Project *project)
|
|
|
|
|
{
|
|
|
|
|
m_project = project;
|
|
|
|
|
}
|
|
|
|
|
|
2015-01-07 09:33:57 +01:00
|
|
|
void TestConfiguration::setUnnamedOnly(bool unnamedOnly)
|
|
|
|
|
{
|
|
|
|
|
m_unnamedOnly = unnamedOnly;
|
|
|
|
|
}
|
|
|
|
|
|
2015-02-17 10:33:35 +01:00
|
|
|
void TestConfiguration::setGuessedConfiguration(bool guessed)
|
|
|
|
|
{
|
|
|
|
|
m_guessedConfiguration = guessed;
|
|
|
|
|
}
|
|
|
|
|
|
2014-10-07 15:51:02 +02:00
|
|
|
} // namespace Internal
|
|
|
|
|
} // namespace Autotest
|