Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for StringDescription (0.23 sec)

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

    org/hamcrest/SelfDescribing.class package org.hamcrest; public abstract interface SelfDescribing { public abstract void describeTo(Description); } org/hamcrest/StringDescription.class package org.hamcrest; public synchronized class StringDescription extends BaseDescription { private final Appendable out; public void StringDescription(); public void StringDescription(Appendable); public static String toString(SelfDescribing); public static String asString(SelfDescribing); protected void append(String); 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. 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
    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)
  3. maven-core/src/test/resources/apiv4-repo/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3-javadoc.jar

    argument is a string that contains a substring. StringContains(String) - Constructor for class org.hamcrest.core.StringContains StringDescription - Class in org.hamcrest A Description that is stored as a string. StringDescription() - Constructor for class org.hamcrest.StringDescription StringDescription(Appendable) - Constructor for class org.hamcrest.StringDescription StringEndsWith - Class in org.hamcrest.core Tests if the argument is a string that contains a substring. StringEndsWith(String) -...
    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)
  4. maven-core/src/test/resources/apiv4-repo/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3-sources.jar

    built or appended to. */ void describeTo(Description description); } org/hamcrest/StringDescription.java org/hamcrest/StringDescription.java package org.hamcrest; import java.io.IOException; /** * A {@link Description} that is stored as a string. */ public class StringDescription extends BaseDescription { private final Appendable out; public StringDescription() { this(new StringBuilder()); } public StringDescription(Appendable out) { this.out = out; } /** * Return the description of a {@link SelfDescribing}...
    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)
Back to top