Esiste una funzione che viene attivata all'inizio / alla fine di uno scenario di test? Le funzioni setUp e tearDown vengono attivate prima / dopo ogni singolo test.
In genere mi piacerebbe avere questo:
class TestSequenceFunctions(unittest.TestCase):
def setUpScenario(self):
start() #launched at the beginning, once
def test_choice(self):
element = random.choice(self.seq)
self.assertTrue(element in self.seq)
def test_sample(self):
with self.assertRaises(ValueError):
random.sample(self.seq, 20)
for element in random.sample(self.seq, 5):
self.assertTrue(element in self.seq)
def tearDownScenario(self):
end() #launched at the end, once
Per ora, questi setUp e tearDown sono unit test e diffusi in tutti i miei scenari (contenenti molti test), uno è il primo test, l'altro è l'ultimo test.