All Downloads are FREE. Search and download functionalities are using the official Maven repository.

sbt.protocol.testing.StartTestGroupEvent.scala Maven / Gradle / Ivy

There is a newer version: 1.10.2
Show newest version
/**
 * This code is generated using [[https://www.scala-sbt.org/contraband/ sbt-contraband]].
 */

// DO NOT EDIT MANUALLY
package sbt.protocol.testing
/** Called for each class or equivalent grouping. */
final class StartTestGroupEvent private (
  val name: String) extends sbt.protocol.testing.TestMessage() with Serializable {
  
  
  
  override def equals(o: Any): Boolean = this.eq(o.asInstanceOf[AnyRef]) || (o match {
    case x: StartTestGroupEvent => (this.name == x.name)
    case _ => false
  })
  override def hashCode: Int = {
    37 * (37 * (17 + "sbt.protocol.testing.StartTestGroupEvent".##) + name.##)
  }
  override def toString: String = {
    "StartTestGroupEvent(" + name + ")"
  }
  private[this] def copy(name: String = name): StartTestGroupEvent = {
    new StartTestGroupEvent(name)
  }
  def withName(name: String): StartTestGroupEvent = {
    copy(name = name)
  }
}
object StartTestGroupEvent {
  
  def apply(name: String): StartTestGroupEvent = new StartTestGroupEvent(name)
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy