mirror of
https://github.com/wxWidgets/Phoenix.git
synced 2025-12-15 17:20:07 +01:00
19 lines
399 B
Python
19 lines
399 B
Python
import unittest
|
|
from unittests import wtc
|
|
import wx
|
|
|
|
#---------------------------------------------------------------------------
|
|
|
|
class dirdlg_Tests(wtc.WidgetTestCase):
|
|
|
|
|
|
def test_dirdlg(self):
|
|
dlg = wx.DirDialog(self.frame, 'message')
|
|
dlg.Destroy()
|
|
|
|
#---------------------------------------------------------------------------
|
|
|
|
|
|
if __name__ == '__main__':
|
|
unittest.main()
|