Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for TypeSafeMatcher (0.26 sec)

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

    public final void describeMismatch(Object, Description); static void <clinit>(); } org/hamcrest/TypeSafeMatcher.class package org.hamcrest; public abstract synchronized class TypeSafeMatcher extends BaseMatcher { private static final internal.ReflectiveTypeFinder TYPE_FINDER; private final Class expectedType; protected void TypeSafeMatcher(); protected void TypeSafeMatcher(Class); protected void TypeSafeMatcher(internal.ReflectiveTypeFinder); protected abstract boolean matchesSafely(Object); protected...
    Archive
    - Registered: Sun Apr 14 03:35:08 GMT 2024
    - Last Modified: Sun Oct 02 08:41:25 GMT 2022
    - 44K bytes
    - Viewed (0)
  2. maven-core/src/test/resources/apiv4-repo/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3-javadoc.jar

    interface org.hamcrest.SelfDescribing describeTo Constructor Detail TypeSafeMatcher protected TypeSafeMatcher() The default constructor for simple sub types TypeSafeMatcher protected TypeSafeMatcher(java.lang.Class<?> expectedType) Use this constructor if the subclass that implements matchesSafely is not the class that binds <T> to a type. Parameters: expectedType - The expectedType of the actual value. TypeSafeMatcher protected TypeSafeMatcher(ReflectiveTypeFinder typeFinder) Use this constructor if the...
    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)
  3. okhttp-testing-support/src/main/kotlin/okhttp3/testing/PlatformRule.kt

    import org.conscrypt.Conscrypt
    import org.hamcrest.BaseMatcher
    import org.hamcrest.CoreMatchers.anything
    import org.hamcrest.Description
    import org.hamcrest.Matcher
    import org.hamcrest.StringDescription
    import org.hamcrest.TypeSafeMatcher
    import org.junit.jupiter.api.Assertions.fail
    import org.junit.jupiter.api.Assumptions.assumeFalse
    import org.junit.jupiter.api.Assumptions.assumeTrue
    import org.junit.jupiter.api.extension.AfterEachCallback
    Plain Text
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Mon Jan 08 01:13:22 GMT 2024
    - 15.3K bytes
    - Viewed (0)
  4. maven-core/src/test/resources/apiv4-repo/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3-sources.jar

    matchesSafely((T) item, mismatchDescription); } } } org/hamcrest/TypeSafeMatcher.java org/hamcrest/TypeSafeMatcher.java package org.hamcrest; import org.hamcrest.internal.ReflectiveTypeFinder; /** * Convenient base class for Matchers that require a non-null value of a specific type. * This simply implements the null check, checks the type and then casts. * * @author Joe Walnes * @author Steve Freeman * @author Nat Pryce */ public abstract class TypeSafeMatcher<T> extends BaseMatcher<T> { private static final ReflectiveTypeFinder...
    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)
  5. maven-core/src/test/resources/apiv4-repo/junit/junit/4.13.1/junit-4.13.1.jar

    reflect.InvocationTargetExce; } org/junit/internal/matchers/TypeSafeMatcher.class package org.junit.internal.matchers; public abstract synchronized class TypeSafeMatcher extends org.hamcrest.BaseMatcher { private Class expectedType; public abstract boolean matchesSafely(Object); protected void TypeSafeMatcher(); private static Class findExpectedType(Class); private static boolean isMatchesSafelyMetho(reflect.Method); protected void TypeSafeMatcher(Class); public final boolean matches(Object); } org/ju...
    Archive
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Tue Dec 19 19:08:55 GMT 2023
    - 373.7K bytes
    - Viewed (0)
Back to top