in executors/src/main/kotlin/TestListener.kt [24:37]
override fun testStarted(description: Description) {
currentTestRunInfo = TestRunInfo(
className = description.className,
methodName = description.methodName
)
currentTestRunInfo?.let { JUnitExecutors.output.add(it) }
testOutputStream = ByteArrayOutputStream().also {
errorStream = ErrorStream(it)
outStream = OutStream(it)
}
System.setOut(PrintStream(outStream))
System.setErr(PrintStream(errorStream))
startTime = System.currentTimeMillis()
}