ParamUnittest è uno strumento Python progettato per consentire la creazione di test di unità parametrizzate in grado di lavorare con il pacchetto ufficiale unittest Python.
Esempi:
import unittest
import paramunittest
@ 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 (auto, a, b):
& Nbsp; self.a = a
& Nbsp; self.b = b
& Nbsp; def testless (self):
& 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 (auto, a, b):
& Nbsp; self.a = a
& Nbsp; self.b = b
& Nbsp; def testless (self):
& Nbsp; self.assertLess (self.a, self.b)
Requisiti :
- Python
I commenti non trovato