ConsoleResultReporter
  public
  
  
  
  class
  ConsoleResultReporter
  
  
  
  
    extends TestResultListener
  
  
  
  
  
      implements
      
        ILogSaverListener, 
      
        ITestInvocationListener
      
  
  
| java.lang.Object | ||
| ↳ | com.android.tradefed.result.TestResultListener | |
| ↳ | com.android.tradefed.result.ConsoleResultReporter | |
Result reporter to print the test results to the console.
Prints each test run, each test case, and test metrics, test logs, and test file locations.
Summary
| Public constructors | |
|---|---|
| 
      ConsoleResultReporter()
       | |
| Public methods | |
|---|---|
| 
        
        
        
        
        
        void | 
      invocationEnded(long elapsedTime)
      Reports that the invocation has terminated, whether successfully or due to some error condition. | 
| 
        
        
        
        
        
        void | 
      invocationStarted(IInvocationContext context)
      Reports the start of the test invocation. | 
| 
        
        
        
        
        
        void | 
      logAssociation(String dataName, LogFile logFile)
      In some cases, log must be strongly associated with a test cases, but the opportunity to do
 so on the direct  | 
| 
        
        
        
        
        
        void | 
      testLogSaved(String dataName, LogDataType dataType, InputStreamSource dataStream, LogFile logFile)
      Called when the test log is saved. | 
| 
        
        
        
        
        
        void | 
      testResult(TestDescription test, TestResult result)
       | 
| 
        
        
        
        
        
        void | 
      testRunEnded(long elapsedTimeMillis, Reports end of test run. | 
| 
        
        
        
        
        
        void | 
      testRunFailed(FailureDescription failure)
      Reports test run failed to complete due to a failure described by  | 
| 
        
        
        
        
        
        void | 
      testRunFailed(String errorMessage)
      Reports test run failed to complete due to a fatal error. | 
| 
        
        
        
        
        
        void | 
      testRunStarted(String runName, int testCount)
      Reports the start of a test run. | 
Public constructors
ConsoleResultReporter
public ConsoleResultReporter ()
Public methods
invocationEnded
public void invocationEnded (long elapsedTime)
Reports that the invocation has terminated, whether successfully or due to some error condition.
Will be automatically called by the TradeFederation framework.| Parameters | |
|---|---|
| elapsedTime | long: the elapsed time of the invocation in ms | 
invocationStarted
public void invocationStarted (IInvocationContext context)
Reports the start of the test invocation.
Will be automatically called by the TradeFederation framework. Reporters need to override this method to support multiple devices reporting.
| Parameters | |
|---|---|
| context | IInvocationContext: information about the invocation | 
logAssociation
public void logAssociation (String dataName, 
                LogFile logFile)In some cases, log must be strongly associated with a test cases, but the opportunity to do
 so on the direct testLogSaved(String, com.android.tradefed.result.LogDataType, com.android.tradefed.result.InputStreamSource, com.android.tradefed.result.LogFile)
 callback is not possible. Thus, this callback allows to provide a strong association
 explicitly.
| Parameters | |
|---|---|
| dataName | String: The name of the data | 
| logFile | LogFile: theLogFilethat was logged before and should be associated with the
     test case. | 
testLogSaved
public void testLogSaved (String dataName, 
                LogDataType dataType, 
                InputStreamSource dataStream, 
                LogFile logFile)Called when the test log is saved.
Should be used in place of ITestInvocationListener.testLog(String, LogDataType,
 InputStreamSource).
| Parameters | |
|---|---|
| dataName | String: aStringdescriptive name of the data. e.g. "device_logcat". Note
     dataName may not be unique per invocation. ie implementers must be able to handle
     multiple calls with same dataName | 
| dataType | LogDataType: theLogDataTypeof the data | 
| dataStream | InputStreamSource: theInputStreamSourceof the data. Implementers should call
     createInputStream to start reading the data, and ensure to close the resulting
     InputStream when complete. | 
| logFile | LogFile: theLogFilecontaining the meta data of the saved file. | 
testResult
public void testResult (TestDescription test, TestResult result)
| Parameters | |
|---|---|
| test | TestDescription | 
| result | TestResult | 
testRunEnded
public void testRunEnded (long elapsedTimeMillis, 
                 metrics) Reports end of test run.
| Parameters | |
|---|---|
| elapsedTimeMillis | long: device reported elapsed time, in milliseconds | 
| metrics | : key-value pairs reported at the end of a test run | 
testRunFailed
public void testRunFailed (FailureDescription failure)
Reports test run failed to complete due to a failure described by FailureDescription.
| Parameters | |
|---|---|
| failure | FailureDescription:FailureDescriptiondescribing the failure and its context. | 
testRunFailed
public void testRunFailed (String errorMessage)
Reports test run failed to complete due to a fatal error.
| Parameters | |
|---|---|
| errorMessage | String:Stringdescribing reason for run failure. | 
testRunStarted
public void testRunStarted (String runName, 
                int testCount)Reports the start of a test run.
| Parameters | |
|---|---|
| runName | String: the test run name | 
| testCount | int: total number of tests in test run | 
