blob: e8f4ecc6b1284116149cdd9d4f51c241a96fc2d2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
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()
|