aboutsummaryrefslogtreecommitdiffstats
path: root/sources/pyside2/tests/QtCore/qenum_test.py
diff options
context:
space:
mode:
Diffstat (limited to 'sources/pyside2/tests/QtCore/qenum_test.py')
-rw-r--r--sources/pyside2/tests/QtCore/qenum_test.py92
1 files changed, 0 insertions, 92 deletions
diff --git a/sources/pyside2/tests/QtCore/qenum_test.py b/sources/pyside2/tests/QtCore/qenum_test.py
deleted file mode 100644
index ada625f24..000000000
--- a/sources/pyside2/tests/QtCore/qenum_test.py
+++ /dev/null
@@ -1,92 +0,0 @@
-#!/usr/bin/python
-
-#############################################################################
-##
-## Copyright (C) 2016 The Qt Company Ltd.
-## Contact: https://www.qt.io/licensing/
-##
-## This file is part of the test suite of Qt for Python.
-##
-## $QT_BEGIN_LICENSE:GPL-EXCEPT$
-## Commercial License Usage
-## Licensees holding valid commercial Qt licenses may use this file in
-## accordance with the commercial license agreement provided with the
-## Software or, alternatively, in accordance with the terms contained in
-## a written agreement between you and The Qt Company. For licensing terms
-## and conditions see https://www.qt.io/terms-conditions. For further
-## information use the contact form at https://www.qt.io/contact-us.
-##
-## GNU General Public License Usage
-## Alternatively, this file may be used under the terms of the GNU
-## General Public License version 3 as published by the Free Software
-## Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT
-## included in the packaging of this file. Please review the following
-## information to ensure the GNU General Public License requirements will
-## be met: https://www.gnu.org/licenses/gpl-3.0.html.
-##
-## $QT_END_LICENSE$
-##
-#############################################################################
-
-'''Test cases for QEnum and QFlags'''
-
-import unittest
-
-from PySide2.QtCore import *
-
-class TestEnum(unittest.TestCase):
-
- def testToInt(self):
- self.assertEqual(QIODevice.NotOpen, 0)
- self.assertEqual(QIODevice.ReadOnly, 1)
- self.assertEqual(QIODevice.WriteOnly, 2)
- self.assertEqual(QIODevice.ReadWrite, 1 | 2)
- self.assertEqual(QIODevice.Append, 4)
- self.assertEqual(QIODevice.Truncate, 8)
- self.assertEqual(QIODevice.Text, 16)
- self.assertEqual(QIODevice.Unbuffered, 32)
-
- def testToIntInFunction(self):
- self.assertEqual(str(int(QIODevice.WriteOnly)), "2")
-
- def testOperations(self):
- k = Qt.Key.Key_1
-
- # Integers
- self.assertEqual(k + 2, 2 + k)
- self.assertEqual(k - 2, -(2 - k))
- self.assertEqual(k * 2, 2 * k)
-
- # Floats
- with self.assertRaises(TypeError):
- a = k+2.0
-
- with self.assertRaises(TypeError):
- a = k-2.0
-
- with self.assertRaises(TypeError):
- a = k*2.0
-
-class TestQFlags(unittest.TestCase):
- def testToItn(self):
- om = QIODevice.NotOpen
-
- self.assertEqual(om, QIODevice.NotOpen)
- self.assertTrue(om == 0)
-
- self.assertTrue(om != QIODevice.ReadOnly)
- self.assertTrue(om != 1)
-
- def testToIntInFunction(self):
- om = QIODevice.WriteOnly
- self.assertEqual(int(om), 2)
-
- def testNonExtensibleEnums(self):
- try:
- om = QIODevice.OpenMode(QIODevice.WriteOnly)
- self.assertFail()
- except:
- pass
-
-if __name__ == '__main__':
- unittest.main()