mirror of
https://github.com/wxWidgets/Phoenix.git
synced 2025-09-06 01:40:23 +02:00
18 lines
383 B
Python
18 lines
383 B
Python
import unittest
|
|
from unittests import wtc
|
|
import wx
|
|
|
|
#---------------------------------------------------------------------------
|
|
|
|
class debug_Tests(wtc.WidgetTestCase):
|
|
|
|
def test_debug1(self):
|
|
wx.Abort
|
|
wx.Trap
|
|
wx.DisableAsserts
|
|
|
|
#---------------------------------------------------------------------------
|
|
|
|
if __name__ == '__main__':
|
|
unittest.main()
|