本文整理匯總了Java中org.hamcrest.core.IsNot.not方法的典型用法代碼示例。如果您正苦於以下問題:Java IsNot.not方法的具體用法?Java IsNot.not怎麽用?Java IsNot.not使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類org.hamcrest.core.IsNot
的用法示例。
在下文中一共展示了IsNot.not方法的5個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。
示例1: isNotEmpty
import org.hamcrest.core.IsNot; //導入方法依賴的package包/類
public static Matcher<NodeIterable<?>> isNotEmpty() {
return IsNot.not(INSTANCE);
}
示例2: not
import org.hamcrest.core.IsNot; //導入方法依賴的package包/類
public static <T> Matcher<T> not(T operand) {
return IsNot.not(operand);
}
示例3: not
import org.hamcrest.core.IsNot; //導入方法依賴的package包/類
public static <T> Matcher<T> not(T value) {
return IsNot.not(equalTo(value));
}
示例4: none
import org.hamcrest.core.IsNot; //導入方法依賴的package包/類
/**
* Creates a {@link Matcher} that is successful if an exact number of
* items in the examined {@link Iterable} is a positive match.
*
* @param matcher to apply to the list
* @param <T>
* @return {@link Matcher}
*/
public static <T> Matcher<Iterable<T>> none(Matcher<T> matcher) {
return IsNot.not(any(matcher));
}
示例5: notNullValue
import org.hamcrest.core.IsNot; //導入方法依賴的package包/類
/**
* A shortcut to the frequently used <code>not(nullValue())</code>.
* <p></p>
* For example:
* <pre>assertThat(cheese, is(notNullValue()))</pre>
* instead of:
* <pre>assertThat(cheese, is(not(nullValue())))</pre>
*
*/
public static Matcher<Object> notNullValue() {
return IsNot.not(nullValue());
}