main.kotlin.org.jetbrains.bsp.protocol.JUnitStyleTestCaseData.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bazel-bsp Show documentation
Show all versions of bazel-bsp Show documentation
An implementation of the Build Server Protocol for Bazel. Allows clients such as IntelliJ to obtain build
specific
information in order to improve the experience of users in the IDE.
package org.jetbrains.bsp.protocol
public data class JUnitStyleTestCaseData(
val time: Double?,
val className: String?,
val errorMessage: String?,
val errorContent: String?,
val errorType: String?,
) {
companion object {
const val DATA_KIND = "junit-style-test-case-data"
}
}
public data class JUnitStyleTestSuiteData(
val time: Double?,
val systemOut: String?,
val systemErr: String?,
) {
companion object {
const val DATA_KIND = "junit-style-test-suite-data"
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy