##// END OF EJS Templates
some cleanup on legend and pie. No need for pie to know too much about legend
some cleanup on legend and pie. No need for pie to know too much about legend

File last commit:

r2063:da4e011c304c
r2173:8e5e86b8b162
Show More
tst_definitions.h
70 lines | 2.3 KiB | text/x-c | CLexer
/ tests / auto / inc / tst_definitions.h
Tero Ahola
Auto tests involving signal spys to wait before comparisons
r1109 /****************************************************************************
**
** Copyright (C) 2012 Digia Plc
** All rights reserved.
** For any questions to Digia, please use contact form at http://qt.digia.com
**
** This file is part of the Qt Commercial Charts Add-on.
**
** $QT_BEGIN_LICENSE$
** Licensees holding valid Qt Commercial licenses may use this file in
** accordance with the Qt Commercial License Agreement provided with the
** Software or, alternatively, in accordance with the terms contained in
** a written agreement between you and Digia.
**
** If you have questions regarding the use of this file, please use
** contact form at http://qt.digia.com
** $QT_END_LICENSE$
**
****************************************************************************/
#ifndef TST_DEFINITIONS_H
#define TST_DEFINITIONS_H
#include <QtTest/QtTest>
Jani Honkonen
Try to make bamboo skip tests that it cannot run
r2062 #include <QPushButton>
Tero Ahola
Auto tests involving signal spys to wait before comparisons
r1109
#define TRY_COMPARE(actual, expected) { \
do { \
const int timeout(1000); \
const int waitStep(30); \
/* always wait before comparing to catch possible extra signals */ \
QTest::qWait(waitStep); \
Tero Ahola
Fixed an issue with domain auto occasionally failing
r1111 for (int time(0); (actual != expected) && (time < timeout); time += waitStep) \
Tero Ahola
Auto tests involving signal spys to wait before comparisons
r1109 QTest::qWait(waitStep); \
QCOMPARE(actual, expected); \
} while (0); \
}
Jani Honkonen
Try to make bamboo skip tests that it cannot run
r2062 // Some bamboo clients have trouble passing mouse events to the test application.
// This can be used to skip those tests so that they don't show up as a failure
// in the test report.
Marek Rosa
Fixed the SKIP_IF_CANNOT_TEST_MOUSE_EVENTS on Qt5
r2063 #ifdef QT5_QUICK_1
#define SKIP_IF_CANNOT_TEST_MOUSE_EVENTS() { \
do { \
QPushButton b; \
b.resize(100, 100); \
b.show(); \
QTest::qWaitForWindowShown(&b); \
QSignalSpy spy(&b, SIGNAL(clicked())); \
QTest::mouseClick(&b, Qt::LeftButton, 0, b.rect().center()); \
if (spy.count() == 0) \
QSKIP("Cannot test mouse events in this environment"); \
} while (0); \
}
#else
Jani Honkonen
Try to make bamboo skip tests that it cannot run
r2062 #define SKIP_IF_CANNOT_TEST_MOUSE_EVENTS() { \
do { \
QPushButton b; \
b.resize(100, 100); \
b.show(); \
QTest::qWaitForWindowShown(&b); \
QSignalSpy spy(&b, SIGNAL(clicked())); \
QTest::mouseClick(&b, Qt::LeftButton, 0, b.rect().center()); \
if (spy.count() == 0) \
QSKIP("Cannot test mouse events in this environment", SkipAll); \
} while (0); \
}
Marek Rosa
Fixed the SKIP_IF_CANNOT_TEST_MOUSE_EVENTS on Qt5
r2063 #endif
Jani Honkonen
Try to make bamboo skip tests that it cannot run
r2062
Tero Ahola
Auto tests involving signal spys to wait before comparisons
r1109 #endif // TST_DEFINITIONS_H