mardi 1 mars 2016

Sequentially related tests in TestNG

In TestNG I have a parameterized Test A which automatically creates n tests from a dataProvider, and a Test B which should be executed each time a test in A finishes as I want to take advantage of the result obtained in A. In other words, I would like to know is it's possible to have the following:

Given a parameterized @Test A(dataProvider = "inputList") and a @Test B, TestNG would create the following unit tests and execute them in the following order:

Test A1
Test B1 (Based on A1 result)
Test A2
Test B2 (Based on B2 result)
...

Test An
Test Bn (Based on An result)

Is it possible with any existing TestNG tag? I know I could treat @Test B as an @After but this wouldn't be understood for TestNG as a test and I need Test B to be seen as a test for later reports.

Aucun commentaire:

Enregistrer un commentaire