bleep.model.TestFrameworkName.scala Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bleep-model_2.12 Show documentation
Show all versions of bleep-model_2.12 Show documentation
A bleeping fast scala build tool!
The newest version!
package bleep.model
import io.circe.{Decoder, Encoder}
case class TestFrameworkName(value: String)
object TestFrameworkName {
implicit val decodes: Decoder[TestFrameworkName] = Decoder[String].map(TestFrameworkName.apply)
implicit val encodes: Encoder[TestFrameworkName] = Encoder[String].contramap(_.value)
implicit val ordering: Ordering[TestFrameworkName] = Ordering[String].on(_.value)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy