org.hamcrest.internal.SelfDescribingValue.scala Maven / Gradle / Ivy
The newest version!
/*
* Ported from https://github.com/hamcrest/JavaHamcrest/
*/
package org.hamcrest.internal
import org.hamcrest.Description
import org.hamcrest.SelfDescribing
class SelfDescribingValue[T](value: T) extends SelfDescribing {
override def describeTo(description: Description): Unit =
description.appendValue(value.asInstanceOf[AnyRef])
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy