HomeSort by relevance Sort by last modified time
    Searched refs:AssertionFailedError (Results 101 - 125 of 234) sorted by null

1 2 3 45 6 7 8 910

  /tools/tradefederation/core/tests/src/com/android/tradefed/testtype/
PythonUnitTestResultParserTest.java 30 import junit.framework.AssertionFailedError;
457 expectLastCall().andThrow(new AssertionFailedError()).anyTimes();
471 expectLastCall().andThrow(new AssertionFailedError()).anyTimes();
489 expectLastCall().andThrow(new AssertionFailedError()).anyTimes();
  /art/test/021-string2/src/junit/framework/
Assert.java 16 * an AssertionFailedError with the given message.
24 * an AssertionFailedError.
31 * an AssertionFailedError with the given message.
38 * an AssertionFailedError.
48 throw new AssertionFailedError();
50 throw new AssertionFailedError(message);
60 * an AssertionFailedError is thrown with the given message.
71 * an AssertionFailedError is thrown.
95 * an AssertionFailedError is thrown with the given message. If the expected
113 * are not an AssertionFailedError is thrown with the given message. If th
    [all...]
  /art/test/082-inline-execute/src/junit/framework/
Assert.java 16 * an AssertionFailedError with the given message.
24 * an AssertionFailedError.
31 * an AssertionFailedError with the given message.
38 * an AssertionFailedError.
48 throw new AssertionFailedError();
50 throw new AssertionFailedError(message);
60 * an AssertionFailedError is thrown with the given message.
71 * an AssertionFailedError is thrown.
95 * an AssertionFailedError is thrown with the given message. If the expected
113 * are not an AssertionFailedError is thrown with the given message. If th
    [all...]
  /cts/tests/tests/security/src/android/security/cts/
ListeningPortsTest.java 23 import junit.framework.AssertionFailedError;
291 private static class ListeningPortsAssertionError extends AssertionFailedError {
  /external/guava/guava-gwt/test-super/com/google/common/base/super/com/google/common/base/
PreconditionsTest.java 21 import junit.framework.AssertionFailedError;
343 throw new AssertionFailedError();
  /external/guava/guava-tests/test/com/google/common/base/
PreconditionsTest.java 23 import junit.framework.AssertionFailedError;
351 throw new AssertionFailedError();
  /external/guice/extensions/assistedinject/test/com/google/inject/assistedinject/
ExtensionSpiTest.java 39 import junit.framework.AssertionFailedError;
205 throw new AssertionFailedError("invalid other binding: " + binding);
  /external/junit/src/main/java/junit/framework/
Assert.java 18 * an AssertionFailedError with the given message.
28 * an AssertionFailedError.
36 * an AssertionFailedError with the given message.
44 * an AssertionFailedError.
55 throw new AssertionFailedError();
57 throw new AssertionFailedError(message);
69 * an AssertionFailedError is thrown with the given message.
83 * an AssertionFailedError is thrown.
112 * an AssertionFailedError is thrown with the given message. If the expected
134 * are not an AssertionFailedError is thrown with the given message. If th
    [all...]
  /external/junit/src/main/java/junit/runner/
BaseTestRunner.java 18 import junit.framework.AssertionFailedError;
77 public synchronized void addFailure(final Test test, final AssertionFailedError e) {
  /external/junit/src/main/java/org/junit/internal/runners/
JUnit38ClassRunner.java 4 import junit.framework.AssertionFailedError;
66 public void addFailure(Test test, AssertionFailedError t) {
  /external/testng/src/main/java/org/testng/junit/
JUnitTestRunner.java 22 import junit.framework.AssertionFailedError;
83 * @see junit.framework.TestListener#addFailure(junit.framework.Test, junit.framework.AssertionFailedError)
86 public void addFailure(Test test, AssertionFailedError t) {
  /frameworks/base/services/tests/servicestests/src/com/android/server/devicepolicy/
DpmTestUtils.java 32 import junit.framework.AssertionFailedError;
149 } catch (AssertionFailedError e) {
  /frameworks/base/test-base/src/junit/framework/
Assert.java 16 * an AssertionFailedError with the given message.
24 * an AssertionFailedError.
31 * an AssertionFailedError with the given message.
38 * an AssertionFailedError.
48 throw new AssertionFailedError();
50 throw new AssertionFailedError(message);
60 * an AssertionFailedError is thrown with the given message.
71 * an AssertionFailedError is thrown.
95 * an AssertionFailedError is thrown with the given message. If the expected
113 * are not an AssertionFailedError is thrown with the given message. If th
    [all...]
  /frameworks/base/test-runner/src/junit/runner/
BaseTestRunner.java 18 import junit.framework.AssertionFailedError;
78 public synchronized void addFailure(final Test test, final AssertionFailedError t) {
  /frameworks/base/test-runner/tests/src/android/test/
AndroidTestRunnerTest.java 24 import junit.framework.AssertionFailedError;
262 public void addFailure(Test test, AssertionFailedError t) {
  /frameworks/base/test-runner/tests/src/android/test/suitebuilder/
TestSuiteBuilderTest.java 29 import junit.framework.AssertionFailedError;
199 public void addFailure(Test test, AssertionFailedError t) {
  /libcore/luni/src/test/java/libcore/xml/
JaxenXPathTestSuite.java 19 import junit.framework.AssertionFailedError;
233 Error error = new AssertionFailedError("Failed to get context");
  /cts/tests/tests/provider/src/android/provider/cts/contacts/
ContactsContract_AllUriTest.java 32 import junit.framework.AssertionFailedError;
545 } catch (AssertionFailedError expected) {
577 } catch (AssertionFailedError expected) {
  /external/guava/guava-gwt/test-super/com/google/common/collect/testing/super/com/google/common/collect/testing/
Helpers.java 27 import junit.framework.AssertionFailedError;
162 AssertionFailedError assertionFailedError =
163 new AssertionFailedError(String.valueOf(message));
164 assertionFailedError.initCause(cause);
165 throw assertionFailedError;
  /external/guava/guava-testlib/src/com/google/common/collect/testing/
AbstractIteratorTester.java 24 import junit.framework.AssertionFailedError;
417 } catch (AssertionFailedError cause) {
444 throws AssertionFailedError {
Helpers.java 28 import junit.framework.AssertionFailedError;
164 AssertionFailedError assertionFailedError =
165 new AssertionFailedError(String.valueOf(message));
166 assertionFailedError.initCause(cause);
167 throw assertionFailedError;
  /external/guava/guava-testlib/src/com/google/common/testing/
NullPointerTester.java 36 import junit.framework.AssertionFailedError;
348 AssertionFailedError error = new AssertionFailedError(
  /external/owasp/sanitizer/src/tests/org/owasp/html/
AntiSamyTest.java 36 import junit.framework.AssertionFailedError;
59 AssertionFailedError failure = new AssertionFailedError();
    [all...]
  /packages/providers/ContactsProvider/tests2/src/com/android/providers/contacts/tests2/
AllUriTest.java 31 import junit.framework.AssertionFailedError;
568 } catch (AssertionFailedError expected) {
600 } catch (AssertionFailedError expected) {
  /cts/tests/tests/media/src/android/media/cts/
MediaPlayerDrmTest.java 64 import junit.framework.AssertionFailedError;

Completed in 648 milliseconds

1 2 3 45 6 7 8 910