⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 matchertest.java

📁 junit
💻 JAVA
字号:
package org.junit.tests.experimental;import static org.hamcrest.CoreMatchers.not;import static org.junit.Assert.assertThat;import static org.junit.Assume.assumeThat;import static org.junit.experimental.results.ResultMatchers.hasFailureContaining;import static org.junit.experimental.results.ResultMatchers.hasSingleFailureContaining;import java.util.Arrays;import org.hamcrest.Matcher;import org.junit.experimental.results.PrintableResult;import org.junit.experimental.theories.DataPoint;import org.junit.experimental.theories.Theories;import org.junit.experimental.theories.Theory;import org.junit.runner.Description;import org.junit.runner.RunWith;import org.junit.runner.notification.Failure;@RunWith(Theories.class)public class MatcherTest {	@DataPoint	public static Matcher<?> SINGLE_FAILURE= hasSingleFailureContaining("cheese");	@DataPoint	public static Matcher<?> ANY_FAILURE= hasFailureContaining("cheese");	@DataPoint	public static PrintableResult TWO_FAILURES_ONE_CHEESE= new PrintableResult(			Arrays.asList(failure("cheese"), failure("mustard")));	@Theory	public <T> void differentMatchersHaveDifferentDescriptions(			Matcher<T> matcher1, Matcher<T> matcher2, T value) {		assumeThat(value, matcher1);		assumeThat(value, not(matcher2));		assertThat(matcher1.toString(), not(matcher2.toString()));	}	private static Failure failure(String string) {		return new Failure(Description.EMPTY, new Error(string));	}}

⌨️ 快捷键说明

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