ParamUnittest est un outil de Python conçu pour permettre la création de tests unitaires paramétrées capables de travailler avec le paquet officiel unittest Python.
Exemples:
unittest d'importation
paramunittest d'importation
@ Paramunittest.parametrized (
& Nbsp; ('1', '2'),
& Nbsp; # (4, 3),
& Nbsp; ('2', '3'),
& Nbsp; (('4',), {'b': '5'}),
& Nbsp; ((), {'a': 5, 'b': 6}),
& Nbsp; {'a': 5, 'b': 6},
)
classe TestFoo (paramunittest.ParametrizedTestCase):
& Nbsp; setParameters def (de soi-même, a, b):
& Nbsp; self.a = a
& Nbsp; self.b = b
& Nbsp; def testLess (auto):
& Nbsp; self.assertLess (self.a, self.b)
@ Paramunittest.parametrized (
& Nbsp; ('1', '2'),
& Nbsp; # (4, 3),
& Nbsp; ('2', '3'),
& Nbsp; (('4',), {'b': '5'}),
& Nbsp; ((), {'a': 5, 'b': 6}),
& Nbsp; {'a': 5, 'b': 6},
)
classe TestBar (unittest.TestCase):
& Nbsp; setParameters def (de soi-même, a, b):
& Nbsp; self.a = a
& Nbsp; self.b = b
& Nbsp; def testLess (auto):
& Nbsp; self.assertLess (self.a, self.b)
Exigences :
- Python
Commentaires non trouvées