📄 isanything.java
字号:
/* 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;/** * A matcher that always returns <code>true</code>. */public class IsAnything<T> extends BaseMatcher<T> { private final String description; public IsAnything() { this("ANYTHING"); } public IsAnything(String description) { this.description = description; } public boolean matches(Object o) { return true; } public void describeTo(Description description) { description.appendText(this.description); } /** * This matcher always evaluates to true. */ @Factory public static <T> Matcher<T> anything() { return new IsAnything<T>(); } /** * This matcher always evaluates to true. * * @param description A meaningful string used when describing itself. */ @Factory public static <T> Matcher<T> anything(String description) { return new IsAnything<T>(description); } /** * This matcher always evaluates to true. With type inference. */ @Factory public static <T> Matcher<T> any(@SuppressWarnings("unused")Class<T> type) { return new IsAnything<T>(); }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -