sbt.protocol.testing.TestCompleteEvent.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
/**
* This code is generated using [[https://www.scala-sbt.org/contraband/ sbt-contraband]].
*/
// DO NOT EDIT MANUALLY
package sbt.protocol.testing
/** Called once, at end of the testing. */
final class TestCompleteEvent private (
val result: sbt.protocol.testing.TestResult) extends sbt.protocol.testing.TestMessage() with Serializable {
override def equals(o: Any): Boolean = this.eq(o.asInstanceOf[AnyRef]) || (o match {
case x: TestCompleteEvent => (this.result == x.result)
case _ => false
})
override def hashCode: Int = {
37 * (37 * (17 + "sbt.protocol.testing.TestCompleteEvent".##) + result.##)
}
override def toString: String = {
"TestCompleteEvent(" + result + ")"
}
private[this] def copy(result: sbt.protocol.testing.TestResult = result): TestCompleteEvent = {
new TestCompleteEvent(result)
}
def withResult(result: sbt.protocol.testing.TestResult): TestCompleteEvent = {
copy(result = result)
}
}
object TestCompleteEvent {
def apply(result: sbt.protocol.testing.TestResult): TestCompleteEvent = new TestCompleteEvent(result)
}