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

munit.Clue.scala Maven / Gradle / Ivy

There is a newer version: 1.0.0-M10
Show newest version
package munit

import munit.internal.MacroCompat

class Clue[+T](
    val source: String,
    val value: T,
    val valueType: String
) extends Serializable {
  override def toString(): String = s"Clue($source, $value)"
}
object Clue extends MacroCompat.ClueMacro {
  def empty[T](value: T): Clue[T] = new Clue("", value, "")
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy