override fun onEnter()

in plugin-rust-agent/src/main/kotlin/jetbrains/buildServer/rust/logging/CargoTestingLogger.kt [16:25]


    override fun onEnter(text: String) {
        myTestSuiteName = if (text.isBlank()) null else text
        myFailedTests = hashMapOf()
        myTestStartTime = System.currentTimeMillis()
        myTestOutputName = null

        if (myTestSuiteName != null) {
            myLogger.message(String.format(TEST_SUITE_STARTED_FORMAT, myTestSuiteName))
        }
    }