mirror of
https://github.com/wxWidgets/Phoenix.git
synced 2025-07-21 12:41:10 +02:00
17 lines
413 B
Python
17 lines
413 B
Python
import unittest
|
|
from unittests import wtc
|
|
import wx
|
|
|
|
#---------------------------------------------------------------------------
|
|
|
|
class translation_Tests(wtc.WidgetTestCase):
|
|
|
|
def test_translation1(self):
|
|
ldr = wx.FileTranslationsLoader()
|
|
wx.GetTranslation('hello')
|
|
|
|
#---------------------------------------------------------------------------
|
|
|
|
if __name__ == '__main__':
|
|
unittest.main()
|