import unittest from PyQt5.QtWidgets import QApplication import sys app = QApplication(sys.argv) class TestFilterViewGUI(unittest.TestCase): def setUp(self) -> None: pass def test_gui(self): #NEEDS TO BE IMPLEMENTED, too much was refactored to make the old test pass... self.assertTrue(False)