mirror of
https://github.com/wxWidgets/Phoenix.git
synced 2025-09-05 01:10:12 +02:00
18 lines
471 B
Python
18 lines
471 B
Python
import unittest
|
|
from unittests import wtc
|
|
import wx
|
|
|
|
#---------------------------------------------------------------------------
|
|
|
|
class valtext_Tests(wtc.WidgetTestCase):
|
|
|
|
# TODO: Remove this test and add real ones.
|
|
@unittest.expectedFailure
|
|
def test_valtext1(self):
|
|
self.fail("Unit tests for valtext not implemented yet.")
|
|
|
|
#---------------------------------------------------------------------------
|
|
|
|
if __name__ == '__main__':
|
|
unittest.main()
|