mirror of
https://github.com/wxWidgets/Phoenix.git
synced 2025-09-05 01:10:12 +02:00
19 lines
439 B
Python
19 lines
439 B
Python
import unittest
|
|
from unittests import wtc
|
|
import wx
|
|
import os
|
|
|
|
import wx.lib.agw.aui.dockart as da
|
|
|
|
#---------------------------------------------------------------------------
|
|
|
|
class lib_agw_aui_dockart_Tests(wtc.WidgetTestCase):
|
|
|
|
def test_lib_agw_aui_dockartCtor(self):
|
|
da.ModernDockArt(self.frame)
|
|
|
|
#---------------------------------------------------------------------------
|
|
|
|
if __name__ == '__main__':
|
|
unittest.main()
|