issame.java

来自「junit」· Java 代码 · 共 41 行

JAVA
41
字号
/*  Copyright (c) 2000-2006 hamcrest.org */package org.hamcrest.core;import org.hamcrest.Description;import org.hamcrest.Matcher;import org.hamcrest.Factory;import org.hamcrest.BaseMatcher;/** * Is the value the same object as another value? */public class IsSame<T> extends BaseMatcher<T> {    private final T object;    public IsSame(T object) {        this.object = object;    }    public boolean matches(Object arg) {        return arg == object;    }    public void describeTo(Description description) {        description.appendText("same(") .appendValue(object) .appendText(")");    }    /**     * Creates a new instance of IsSame     *     * @param object The predicate evaluates to true only when the argument is     *               this object.     */    @Factory    public static <T> Matcher<T> sameInstance(T object) {        return new IsSame<T>(object);    }}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?