org.hamcrest.BaseMatcher.scala Maven / Gradle / Ivy
The newest version!
/*
* Ported from https://github.com/hamcrest/JavaHamcrest/
*/
package org.hamcrest
abstract class BaseMatcher[T] extends Matcher[T] {
override def describeMismatch(item: AnyRef, description: Description): Unit =
description.appendText("was ").appendValue(item)
override def toString(): String = StringDescription.toString(this)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy