org.gradle.api.tasks.testing
Interface TestLogging


public interface TestLogging

Configures logging of the test execution, e.g. whether the std err / out should be eagerly shown


Method Summary
 boolean getShowStandardStreams()
          Whether to show eagerly the standard stream events.
 TestLogging setShowStandardStream(boolean standardStreams)
          Deprecated.  
 TestLogging setShowStandardStreams(boolean standardStreams)
          Whether to show eagerly the standard stream events.
 

Method Detail

setShowStandardStream

@Deprecated
TestLogging setShowStandardStream(boolean standardStreams)
Deprecated. 

Deprecated for naming consistency reasons, please use setShowStandardStreams(boolean)

Parameters:
standardStreams - to configure
Returns:
this logging instance

setShowStandardStreams

TestLogging setShowStandardStreams(boolean standardStreams)
Whether to show eagerly the standard stream events. Standard output is printed at INFO level, standard error at ERROR level.

Parameters:
standardStreams - to configure
Returns:
this logging instance

getShowStandardStreams

boolean getShowStandardStreams()
Whether to show eagerly the standard stream events. Standard output is printed at INFO level, standard error at ERROR level.