PrettyTestEventLogger
public
class
PrettyTestEventLogger
extends Object
implements
ITestInvocationListener
java.lang.Object | |
↳ | com.android.tradefed.testtype.host.PrettyTestEventLogger |
Il logger abbina gli eventi e li registra per semplificare il debug. Il log sul lato dell'host e sul lato del dispositivo corrisponderà esattamente per facilitarne la ricerca.
Riepilogo
Costruttori pubblici | |
---|---|
PrettyTestEventLogger(
|
Metodi pubblici | |
---|---|
void
|
testEnded(TestDescription test,
Segnala il termine dell'esecuzione di un singolo test case. |
void
|
testFailed(TestDescription test, String trace)
Segnala l'errore di un singolo test case. |
void
|
testStarted(TestDescription test)
Segnala l'inizio di un singolo test case. |
Costruttori pubblici
PrettyTestEventLogger
public PrettyTestEventLogger (devices)
Parametri | |
---|---|
devices |
|
Metodi pubblici
testEnded
public void testEnded (TestDescription test,testMetrics)
Segnala il termine dell'esecuzione di un singolo test case.
Se testFailed(TestDescription, FailureDescription)
non è stato invocato, questo test è stato superato. Restituisce anche eventuali metriche chiave/valore che potrebbero essere state emesse durante l'esecuzione del test case.
Parametri | |
---|---|
test |
TestDescription : identifica il test |
testMetrics |
: un ERROR(/Map) delle metriche emesse |
testFailed
public void testFailed (TestDescription test, String trace)
Segnala l'errore di un singolo test case.
Verrà chiamato tra testStarted e testEnded.
Parametri | |
---|---|
test |
TestDescription : identifica il test |
trace |
String : analisi dello stack dell'errore |
testStarted
public void testStarted (TestDescription test)
Segnala l'inizio di un singolo test case. Interfaccia precedente, da utilizzare con testStarted(com.android.tradefed.result.TestDescription)
, se possibile.
Parametri | |
---|---|
test |
TestDescription : identifica il test |