Tests for GSI kwargs, test framework enhanced to print the total number of tests

This commit is contained in:
Matthias Koefferlein
2023-12-28 19:44:44 +01:00
parent f685fe3adf
commit e2ba78185c
4 changed files with 134 additions and 13 deletions
-6
View File
@@ -198,12 +198,6 @@ class KWArgsTest(unittest.TestCase):
except Exception as ex:
self.assertEqual(str(ex).find("No overload with matching arguments."), 0)
try:
t = pya.Trans("17")
self.assertEqual(True, False)
except Exception as ex:
self.assertEqual(str(ex).find("No overload with matching arguments."), 0)
# run unit tests
if __name__ == '__main__':