Files
Phoenix/unittests/test_darkmode.py
2026-02-01 21:13:28 -05:00

17 lines
391 B
Python

import unittest
from unittests import wtc
import wx
#---------------------------------------------------------------------------
class darkmode_Tests(wtc.WidgetTestCase):
# TODO: Remove this test and add real ones.
def test_darkmode1(self):
pass
#---------------------------------------------------------------------------
if __name__ == '__main__':
unittest.main()