Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for Sense (0.14 sec)

  1. maven-core/src/test/resources/apiv4-repo/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3-sources.jar

    .<T>instanceOf(type); } /** * Creates a matcher that wraps an existing matcher, but inverts the logic by which * it will match. * <p/> * For example: * <pre>assertThat(cheese, is(not(equalTo(smelly))))</pre> * * @param matcher * the matcher whose sense should be inverted */ public static <T> org.hamcrest.Matcher<T> not(org.hamcrest.Matcher<T> matcher) { return org.hamcrest.core.IsNot.<T>not(matcher); } /** * A shortcut to the frequently used <code>not(equalTo(x))</code>. * <p/> * For example: * ...
    Archive
    - Registered: Sun Apr 14 03:35:08 GMT 2024
    - Last Modified: Sun Oct 02 08:41:25 GMT 2022
    - 31.9K bytes
    - Viewed (0)
  2. maven-core/src/test/resources/apiv4-repo/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3-javadoc.jar

    public static <T> Matcher<T> not(Matcher<T> matcher) Creates a matcher that wraps an existing matcher, but inverts the logic by which it will match. For example: assertThat(cheese, is(not(equalTo(smelly)))) Parameters: matcher - the matcher whose sense should be inverted not public static <T> Matcher<T> not(T value) A shortcut to the frequently used not(equalTo(x)). For example: assertThat(cheese, is(not(smelly))) instead of: assertThat(cheese, is(not(equalTo(smelly)))) Parameters: value - the value...
    Archive
    - Registered: Sun Apr 14 03:35:08 GMT 2024
    - Last Modified: Sun Oct 02 08:41:25 GMT 2022
    - 236.8K bytes
    - Viewed (0)
Back to top