mirror of
https://github.com/rbreu/beeref.git
synced 2026-03-11 08:54:28 +00:00
14 lines
247 B
Python
14 lines
247 B
Python
from unittest import TestCase
|
|
|
|
from PyQt6 import QtWidgets
|
|
|
|
|
|
class BeeTestCase(TestCase):
|
|
|
|
@classmethod
|
|
def setUpClass(cls):
|
|
cls.app = QtWidgets.QApplication([])
|
|
|
|
@classmethod
|
|
def tearDownClass(cls):
|
|
cls.app.quit()
|