Merge pull request #1079 from swt2c/skip_unimplemented_tests

Skip unimplemented tests instead of failing them
(cherry picked from commit 66049df936)
This commit is contained in:
Robin Dunn
2018-11-30 14:38:53 -08:00
parent 79ddece4e9
commit ba3a638839
3 changed files with 3 additions and 0 deletions

View File

@@ -7,6 +7,7 @@ import wx
class stockitem_Tests(wtc.WidgetTestCase):
# TODO: Remove this test and add real ones.
@unittest.expectedFailure
def test_stockitem1(self):
self.fail("Unit tests for stockitem not implemented yet.")

View File

@@ -7,6 +7,7 @@ import wx
class unichar_Tests(wtc.WidgetTestCase):
# TODO: Remove this test and add real ones.
@unittest.expectedFailure
def test_unichar1(self):
self.fail("Unit tests for unichar not implemented yet.")

View File

@@ -7,6 +7,7 @@ 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.")