20 lines
401 B
Python
20 lines
401 B
Python
|
from src.python.ui.mainwindow_ui import Ui_MainWindow
|
||
|
import unittest
|
||
|
|
||
|
|
||
|
class Test_Ui_MainWindow(unittest.TestCase):
|
||
|
|
||
|
def setUp(self) -> None:
|
||
|
pass
|
||
|
|
||
|
def tearDown(self) -> None:
|
||
|
pass
|
||
|
|
||
|
def test_check_create__mainwindow(self):
|
||
|
ui_mainwindow = Ui_MainWindow()
|
||
|
self.assertIsInstance(ui_mainwindow, Ui_MainWindow)
|
||
|
|
||
|
|
||
|
if __name__ == '__main__':
|
||
|
unittest.main()
|