InoltroRisultato Riprova
public
class
RetryResultForwarder
extends ResultForwarder
java.lang.Object | ||
🎞 | com.android.tradefed.result.ResultForwarder | |
🎞 | com.android.tradefed.result.RiprovaResultForwarder |
Un'estensione di ResultForwarder
che esegue sempre il push a un determinato numero di tentativo.
Riepilogo
Costruttori pubblici | |
---|---|
RetryResultForwarder(int attemptNumber, ITestInvocationListener... listeners)
|
Metodi pubblici | |
---|---|
void
|
testRunStarted(String runName, int testCount)
Segnala l'inizio di un'esecuzione di test. |
void
|
testRunStarted(String runName, int testCount, int attemptNumber)
Segnala l'inizio di un'esecuzione di test. |
Costruttori pubblici
InoltroRisultato Riprova
public RetryResultForwarder (int attemptNumber, ITestInvocationListener... listeners)
Parametri | |
---|---|
attemptNumber |
int |
listeners |
ITestInvocationListener |
Metodi pubblici
testRunStarted
public void testRunStarted (String runName, int testCount)
Segnala l'inizio di un'esecuzione di test.
Parametri | |
---|---|
runName |
String : nome dell'esecuzione del test |
testCount |
int : numero totale di test nell'esecuzione del test |
testRunStarted
public void testRunStarted (String runName, int testCount, int attemptNumber)
Segnala l'inizio di un'esecuzione di test.
Parametri | |
---|---|
runName |
String : nome dell'esecuzione del test |
testCount |
int : numero totale di test nell'esecuzione del test |
attemptNumber |
int : numero d'ordine che identifica i diversi tentativi dello stesso runName
che vengono eseguite più volte. Il numero tentato è indicizzato a 0 e deve aumentare ogni volta
quando si verifica una nuova esecuzione. ad es. Un test viene ripetuto tre volte in modo granulare e dovrebbe avere in totale 4
viene eseguito con lo stesso runName e il numero di tentativi è compreso tra 0 e 3. |