public class IsSame<T> extends BaseMatcher<T>
Modifier and Type | Method and Description |
---|---|
void |
describeTo(Description description)
Generates a description of the object.
|
boolean |
matches(java.lang.Object arg)
Evaluates the matcher for argument item.
|
static <T> Matcher<T> |
sameInstance(T target)
Creates a matcher that matches only when the examined object is the same instance as
the specified target object.
|
static <T> Matcher<T> |
theInstance(T target)
Creates a matcher that matches only when the examined object is the same instance as
the specified target object.
|
_dont_implement_Matcher___instead_extend_BaseMatcher_, describeMismatch, toString
public IsSame(T object)
public boolean matches(java.lang.Object arg)
Matcher
arg
- the object against which the matcher is evaluated.true
if item matches, otherwise false
.BaseMatcher
public void describeTo(Description description)
SelfDescribing
description
- The description to be built or appended to.public static <T> Matcher<T> sameInstance(T target)
target
- the target instance against which others should be assessedpublic static <T> Matcher<T> theInstance(T target)
target
- the target instance against which others should be assessed