cadquery-freecad-module/CadQuery/Libs/pyqode/qt/QtTest.py

25 lines
683 B
Python

"""
Provides QtTest and functions
.. warning:: PySide is not supported here, that's why there is not unit tests
running with PySide.
"""
import os
from pyqode.qt import QT_API
from pyqode.qt import PYQT5_API
from pyqode.qt import PYQT4_API
from pyqode.qt import PYSIDE_API
if os.environ[QT_API] in PYQT5_API:
from PyQt5.QtTest import QTest
elif os.environ[QT_API] in PYQT4_API:
from PyQt4.QtTest import QTest as OldQTest
class QTest(OldQTest):
@staticmethod
def qWaitForWindowActive(QWidget):
OldQTest.qWaitForWindowShown(QWidget)
elif os.environ[QT_API] in PYSIDE_API:
raise ImportError('QtTest support is incomplete for PySide')