org.hamcrest.core.Is.<init>()方法的使用及代码示例

x33g5p2x  于2022-01-20 转载在 其他  
字(8.0k)|赞(0)|评价(0)|浏览(100)

本文整理了Java中org.hamcrest.core.Is.<init>()方法的一些代码示例,展示了Is.<init>()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Is.<init>()方法的具体详情如下:
包路径:org.hamcrest.core.Is
类名称:Is
方法名:<init>

Is.<init>介绍

暂无

代码示例

代码示例来源:origin: hamcrest/JavaHamcrest

/**
 * Decorates another Matcher, retaining its behaviour, but allowing tests
 * to be slightly more expressive.
 * For example:
 * <pre>assertThat(cheese, is(equalTo(smelly)))</pre>
 * instead of:
 * <pre>assertThat(cheese, equalTo(smelly))</pre>
 * 
 */
public static <T> Matcher<T> is(Matcher<T> matcher) {
  return new Is<>(matcher);
}

代码示例来源:origin: google/j2objc

/**
 * Decorates another Matcher, retaining its behaviour, but allowing tests
 * to be slightly more expressive.
 * <p/>
 * For example:
 * <pre>assertThat(cheese, is(equalTo(smelly)))</pre>
 * instead of:
 * <pre>assertThat(cheese, equalTo(smelly))</pre>
 * 
 */
@Factory
public static <T> Matcher<T> is(Matcher<T> matcher) {
  return new Is<T>(matcher);
}

代码示例来源:origin: org.hamcrest/hamcrest-all

/**
 * Decorates another Matcher, retaining its behaviour, but allowing tests
 * to be slightly more expressive.
 * <p/>
 * For example:
 * <pre>assertThat(cheese, is(equalTo(smelly)))</pre>
 * instead of:
 * <pre>assertThat(cheese, equalTo(smelly))</pre>
 * 
 */
@Factory
public static <T> Matcher<T> is(Matcher<T> matcher) {
  return new Is<T>(matcher);
}

代码示例来源:origin: org.hamcrest/java-hamcrest

/**
 * Decorates another Matcher, retaining its behaviour, but allowing tests
 * to be slightly more expressive.
 * For example:
 * <pre>assertThat(cheese, is(equalTo(smelly)))</pre>
 * instead of:
 * <pre>assertThat(cheese, equalTo(smelly))</pre>
 * 
 */
public static <T> Matcher<T> is(Matcher<T> matcher) {
  return new Is<T>(matcher);
}

代码示例来源:origin: camunda/camunda-bpm-platform

/**
 * Decorates another Matcher, retaining its behaviour, but allowing tests
 * to be slightly more expressive.
 * <p/>
 * For example:
 * <pre>assertThat(cheese, is(equalTo(smelly)))</pre>
 * instead of:
 * <pre>assertThat(cheese, equalTo(smelly))</pre>
 * 
 */
@Factory
public static <T> Matcher<T> is(Matcher<T> matcher) {
  return new Is<T>(matcher);
}

代码示例来源:origin: org.hamcrest/hamcrest

/**
 * Decorates another Matcher, retaining its behaviour, but allowing tests
 * to be slightly more expressive.
 * For example:
 * <pre>assertThat(cheese, is(equalTo(smelly)))</pre>
 * instead of:
 * <pre>assertThat(cheese, equalTo(smelly))</pre>
 * 
 */
public static <T> Matcher<T> is(Matcher<T> matcher) {
  return new Is<>(matcher);
}

代码示例来源:origin: org.hamcrest/com.springsource.org.hamcrest.core

/**
 * Decorates another Matcher, retaining the behavior but allowing tests
 * to be slightly more expressive.
 *
 * eg. assertThat(cheese, equalTo(smelly))
 * vs  assertThat(cheese, is(equalTo(smelly)))
 */
@Factory
public static <T> Matcher<T> is(Matcher<T> matcher) {
  return new Is<T>(matcher);
}

代码示例来源:origin: com.google.code.maven-play-plugin.com.google.code.eamelink-mockito/mockito-all

/**
 * Decorates another Matcher, retaining the behavior but allowing tests
 * to be slightly more expressive.
 *
 * eg. assertThat(cheese, equalTo(smelly))
 * vs  assertThat(cheese, is(equalTo(smelly)))
 */
@Factory
public static <T> Matcher<T> is(Matcher<T> matcher) {
  return new Is<T>(matcher);
}

代码示例来源:origin: org.glassfish.grizzly/grizzly-websockets-server

/**
 * Decorates another Matcher, retaining its behaviour, but allowing tests
 * to be slightly more expressive.
 * <p/>
 * For example:
 * <pre>assertThat(cheese, is(equalTo(smelly)))</pre>
 * instead of:
 * <pre>assertThat(cheese, equalTo(smelly))</pre>
 * 
 */
@Factory
public static <T> Matcher<T> is(Matcher<T> matcher) {
  return new Is<T>(matcher);
}

代码示例来源:origin: javaee/grizzly

/**
 * Decorates another Matcher, retaining its behaviour, but allowing tests
 * to be slightly more expressive.
 * <p/>
 * For example:
 * <pre>assertThat(cheese, is(equalTo(smelly)))</pre>
 * instead of:
 * <pre>assertThat(cheese, equalTo(smelly))</pre>
 * 
 */
@Factory
public static <T> Matcher<T> is(Matcher<T> matcher) {
  return new Is<T>(matcher);
}

代码示例来源:origin: org.glassfish.grizzly/grizzly-http-server-core

/**
 * Decorates another Matcher, retaining its behaviour, but allowing tests
 * to be slightly more expressive.
 * <p/>
 * For example:
 * <pre>assertThat(cheese, is(equalTo(smelly)))</pre>
 * instead of:
 * <pre>assertThat(cheese, equalTo(smelly))</pre>
 * 
 */
@Factory
public static <T> Matcher<T> is(Matcher<T> matcher) {
  return new Is<T>(matcher);
}

代码示例来源:origin: org.hamcrest/core

/**
 * Decorates another Matcher, retaining its behaviour, but allowing tests
 * to be slightly more expressive.
 * <p/>
 * For example:
 * <pre>assertThat(cheese, is(equalTo(smelly)))</pre>
 * instead of:
 * <pre>assertThat(cheese, equalTo(smelly))</pre>
 * 
 */
@Factory
public static <T> Matcher<T> is(Matcher<T> matcher) {
  return new Is<T>(matcher);
}

代码示例来源:origin: javaee/grizzly

/**
 * Decorates another Matcher, retaining its behaviour, but allowing tests
 * to be slightly more expressive.
 * <p/>
 * For example:
 * <pre>assertThat(cheese, is(equalTo(smelly)))</pre>
 * instead of:
 * <pre>assertThat(cheese, equalTo(smelly))</pre>
 * 
 */
@Factory
public static <T> Matcher<T> is(Matcher<T> matcher) {
  return new Is<T>(matcher);
}

代码示例来源:origin: javaee/grizzly

/**
 * Decorates another Matcher, retaining its behaviour, but allowing tests
 * to be slightly more expressive.
 * <p/>
 * For example:
 * <pre>assertThat(cheese, is(equalTo(smelly)))</pre>
 * instead of:
 * <pre>assertThat(cheese, equalTo(smelly))</pre>
 * 
 */
@Factory
public static <T> Matcher<T> is(Matcher<T> matcher) {
  return new Is<T>(matcher);
}

代码示例来源:origin: com.impetus.fabric/fabric-jdbc-driver-shaded

/**
 * Decorates another Matcher, retaining its behaviour, but allowing tests
 * to be slightly more expressive.
 * <p/>
 * For example:
 * <pre>assertThat(cheese, is(equalTo(smelly)))</pre>
 * instead of:
 * <pre>assertThat(cheese, equalTo(smelly))</pre>
 * 
 */
@Factory
public static <T> Matcher<T> is(Matcher<T> matcher) {
  return new Is<T>(matcher);
}

代码示例来源:origin: javaee/grizzly

/**
 * Decorates another Matcher, retaining its behaviour, but allowing tests
 * to be slightly more expressive.
 * <p/>
 * For example:
 * <pre>assertThat(cheese, is(equalTo(smelly)))</pre>
 * instead of:
 * <pre>assertThat(cheese, equalTo(smelly))</pre>
 * 
 */
@Factory
public static <T> Matcher<T> is(Matcher<T> matcher) {
  return new Is<T>(matcher);
}

代码示例来源:origin: org.ops4j.pax.tipi/org.ops4j.pax.tipi.hamcrest.core

/**
 * Decorates another Matcher, retaining its behaviour, but allowing tests
 * to be slightly more expressive.
 * <p/>
 * For example:
 * <pre>assertThat(cheese, is(equalTo(smelly)))</pre>
 * instead of:
 * <pre>assertThat(cheese, equalTo(smelly))</pre>
 * 
 */
@Factory
public static <T> Matcher<T> is(Matcher<T> matcher) {
  return new Is<T>(matcher);
}

代码示例来源:origin: at.bestsolution.efxclipse.eclipse/org.hamcrest.core

/**
 * Decorates another Matcher, retaining its behaviour, but allowing tests
 * to be slightly more expressive.
 * <p/>
 * For example:
 * <pre>assertThat(cheese, is(equalTo(smelly)))</pre>
 * instead of:
 * <pre>assertThat(cheese, equalTo(smelly))</pre>
 * 
 */
@Factory
public static <T> Matcher<T> is(Matcher<T> matcher) {
  return new Is<T>(matcher);
}

代码示例来源:origin: com.oracle/truffle-tck

/**
 * Decorates another Matcher, retaining its behaviour, but allowing tests
 * to be slightly more expressive.
 * <p/>
 * For example:
 * <pre>assertThat(cheese, is(equalTo(smelly)))</pre>
 * instead of:
 * <pre>assertThat(cheese, equalTo(smelly))</pre>
 * 
 */
@Factory
public static <T> Matcher<T> is(Matcher<T> matcher) {
  return new Is<T>(matcher);
}

代码示例来源:origin: javaee/grizzly

/**
 * Decorates another Matcher, retaining its behaviour, but allowing tests
 * to be slightly more expressive.
 * <p/>
 * For example:
 * <pre>assertThat(cheese, is(equalTo(smelly)))</pre>
 * instead of:
 * <pre>assertThat(cheese, equalTo(smelly))</pre>
 * 
 */
@Factory
public static <T> Matcher<T> is(Matcher<T> matcher) {
  return new Is<T>(matcher);
}

相关文章

微信公众号

最新文章

更多