sbt.protocol.testing.TestResult.scala Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of testing_2.12 Show documentation
Show all versions of testing_2.12 Show documentation
sbt is an interactive build tool
The newest version!
/**
* This code is generated using [[https://www.scala-sbt.org/contraband/ sbt-contraband]].
*/
// DO NOT EDIT MANUALLY
package sbt.protocol.testing
/** Testing result */
sealed abstract class TestResult extends Serializable
object TestResult {
case object Passed extends TestResult
case object Failed extends TestResult
case object Error extends TestResult
}