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

📄 resultmatcherstest.java

📁 junit
💻 JAVA
字号:
package org.junit.tests.experimental.results;import static org.hamcrest.CoreMatchers.is;import static org.junit.Assert.assertThat;import static org.junit.internal.matchers.StringContains.containsString;import org.junit.Test;import org.junit.experimental.results.ResultMatchers;import org.junit.experimental.theories.Theory;public class ResultMatchersTest {	@Test	public void hasFailuresHasGoodDescription() {		assertThat(ResultMatchers.failureCountIs(3).toString(),				is("has 3 failures"));	}	@Theory	public void hasFailuresDescriptionReflectsInput(int i) {		assertThat(ResultMatchers.failureCountIs(i).toString(),				containsString("" + i));	}}

⌨️ 快捷键说明

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