diff options
Diffstat (limited to 'sources/pyside6/tests')
| -rw-r--r-- | sources/pyside6/tests/QtWebView/CMakeLists.txt | 7 | ||||
| -rw-r--r-- | sources/pyside6/tests/QtWebView/QtWebView.pyproject | 3 | ||||
| -rw-r--r-- | sources/pyside6/tests/QtWebView/test_webview.py | 33 |
3 files changed, 40 insertions, 3 deletions
diff --git a/sources/pyside6/tests/QtWebView/CMakeLists.txt b/sources/pyside6/tests/QtWebView/CMakeLists.txt index 63f313639..ccbf9adf1 100644 --- a/sources/pyside6/tests/QtWebView/CMakeLists.txt +++ b/sources/pyside6/tests/QtWebView/CMakeLists.txt @@ -1,4 +1,5 @@ -# Copyright (C) 2023 The Qt Company Ltd. -# SPDX-License-Identifier: BSD-3-Clause +# Copyright (C) 2024 The Qt Company Ltd. +# SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0 + +PYSIDE_TEST(test_webview.py) -# Tests to be added later diff --git a/sources/pyside6/tests/QtWebView/QtWebView.pyproject b/sources/pyside6/tests/QtWebView/QtWebView.pyproject new file mode 100644 index 000000000..ccc8a6850 --- /dev/null +++ b/sources/pyside6/tests/QtWebView/QtWebView.pyproject @@ -0,0 +1,3 @@ +{ + "files": ["test_webview.py"] +} diff --git a/sources/pyside6/tests/QtWebView/test_webview.py b/sources/pyside6/tests/QtWebView/test_webview.py new file mode 100644 index 000000000..e8f4ecc6b --- /dev/null +++ b/sources/pyside6/tests/QtWebView/test_webview.py @@ -0,0 +1,33 @@ +# Copyright (C) 2024 The Qt Company Ltd. +# SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0 +from __future__ import annotations + +'''Unit test for WebView''' + +import os +import sys +import unittest +from pathlib import Path + +# Append the necessary paths to sys.path +sys.path.append(os.fspath(Path(__file__).resolve().parents[1])) +from init_paths import init_test_paths +init_test_paths(False) + +from PySide6.QtWebView import QtWebView + +from helper.usesqapplication import UsesQApplication + + +class QWebViewTestCase(UsesQApplication): + def test_webview_exists(self): + # Initialize QtWebView + QtWebView.initialize() + + # Check if QtWebView can be initialized + self.assertTrue(QtWebView is not None) + print("QtWebView is available in PySide6.") + + +if __name__ == "__main__": + unittest.main() |
