2014-10-07 12:30:54 +02:00
|
|
|
/****************************************************************************
|
|
|
|
|
**
|
2015-02-19 08:09:02 +01:00
|
|
|
** Copyright (C) 2015 The Qt Company Ltd
|
2014-10-07 12:30:54 +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 12:30:54 +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 12:30:54 +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 12:30:54 +02:00
|
|
|
**
|
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
|
|
#ifndef AUTOTESTCONSTANTS_H
|
|
|
|
|
#define AUTOTESTCONSTANTS_H
|
|
|
|
|
|
2014-11-11 17:30:34 +01:00
|
|
|
#include <QtGlobal>
|
|
|
|
|
|
2014-10-07 12:30:54 +02:00
|
|
|
namespace Autotest {
|
|
|
|
|
namespace Constants {
|
|
|
|
|
|
2015-03-30 07:47:07 +02:00
|
|
|
const char ACTION_SCAN_ID[] = "AutoTest.ScanAction";
|
|
|
|
|
const char ACTION_RUN_ALL_ID[] = "AutoTest.RunAll";
|
|
|
|
|
const char ACTION_RUN_SELECTED_ID[] = "AutoTest.RunSelected";
|
2014-12-04 14:05:19 +01:00
|
|
|
const char MENU_ID[] = "AutoTest.Menu";
|
|
|
|
|
const char AUTOTEST_ID[] = "AutoTest.ATP";
|
|
|
|
|
const char AUTOTEST_CONTEXT[] = "Auto Tests";
|
|
|
|
|
const char TASK_INDEX[] = "AutoTest.Task.Index";
|
2015-02-13 15:44:18 +01:00
|
|
|
const char TASK_PARSE[] = "AutoTest.Task.Parse";
|
2014-12-04 14:05:19 +01:00
|
|
|
const char UNNAMED_QUICKTESTS[] = QT_TR_NOOP("<unnamed>");
|
|
|
|
|
const char AUTOTEST_SETTINGS_CATEGORY[] = "ZY.Tests";
|
2014-10-07 12:30:54 +02:00
|
|
|
|
|
|
|
|
} // namespace Constants
|
|
|
|
|
|
2016-01-12 13:52:21 +01:00
|
|
|
namespace Internal {
|
|
|
|
|
|
|
|
|
|
enum TestType
|
|
|
|
|
{
|
|
|
|
|
TestTypeQt,
|
|
|
|
|
TestTypeGTest
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
} // namespace Internal
|
|
|
|
|
} // namespace Autotest
|
|
|
|
|
|
2014-10-07 12:30:54 +02:00
|
|
|
#endif // AUTOTESTCONSTANTS_H
|
|
|
|
|
|