Search Options

Results per page
Sort
Preferred Languages
Advance

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

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

    StringDescription(); description.appendText(reason) .appendText("\nExpected: ") .appendDescriptionOf(matcher) .appendText("\n but: "); matcher.describeMismatch(actual, description); throw new AssertionError(description.toString()); } } public static void assertThat(String reason, boolean assertion) { if (!assertion) { throw new AssertionError(reason); } } } org/hamcrest/SelfDescribing.java org/hamcrest/SelfDescribing.java package org.hamcrest; /** * The ability of an object to describe itself. */ public interface...
    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/junit/junit/4.13.1/junit-4.13.1.jar

    on); } org/junit/internal/ArrayComparisonFailu.class package org.junit.internal; public synchronized class ArrayComparisonFailu extends AssertionError { private static final long serialVersionUID = 1; private final java.util.List fIndices; private final String fMessage; private final AssertionError fCause; public void ArrayComparisonFailu(String, AssertionError, int); public void addDimension(int); public synchronized Throwable getCause(); public String getMessage(); public String toString(); } ...
    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