def apply()

in benchmarking/src/main/scala/com/spotify/elitzur/ValidationTypeTestingExamples.scala [84:95]


  def apply(data: Long): AgeExample = AgeExample(data)

  def parse(data: Long): AgeExample = AgeExample(data)

  def owner: Owner = Blizzard

  def description: String = "This represents an age above 0 and less than 150"
}


case class NonNegativeLongExample(data: Long)
  extends BaseValidationType[Long] {