HomeSort by relevance Sort by last modified time
    Searched refs:testFailed (Results 1 - 25 of 102) sorted by null

1 2 3 4 5

  /external/webkit/LayoutTests/storage/indexeddb/resources/
shared.js 10 testFailed("Success function called unexpectedly.");
15 testFailed("Error function called unexpectedly: (" + event.target.errorCode + ") " + event.target.webkitErrorMessage);
20 testFailed("Abort function called unexpectedly!");
25 testFailed("oncomplete function called unexpectedly!");
30 testFailed("onblocked called unexpectedly");
38 testFailed("No exception thrown! Should have been " + expected);
  /external/webkit/LayoutTests/fast/xpath/
xpath-test-pre.js 3 testFailed(comment + " incorrect length (expected " + expected.length + ", actual " + actual.snapshotLength + ")");
9 testFailed(comment + " item " + i + " incorrect (expected " + expected[i].nodeName + ", actual " + actual.snapshotItem(i).nodeName + ")");
31 testFailed(expr + ": expected " + expected + ", actual " + result.numberValue);
36 testFailed(expr + ": expected '" + expected + "', actual '" + result.stringValue + "'");
41 testFailed(expr + ": expected '" + expected + "', actual '" + result.booleanValue + "'");
45 testFailed(expr + ": raised " + ex);
  /external/webkit/LayoutTests/fast/dom/Geolocation/script-tests/
delayed-permission-allowed-for-multiple-requests.js 22 testFailed('Success callback invoked unexpectedly');
25 testFailed('Error callback invoked unexpectedly');
36 testFailed('Success callback invoked unexpectedly');
39 testFailed('Error callback invoked unexpectedly');
reentrant-permission-denied.js 18 testFailed('Success callback invoked unexpectedly');
22 testFailed('Error callback invoked unexpectedly');
32 testFailed('Success callback invoked unexpectedly');
delayed-permission-denied-for-multiple-requests.js 17 testFailed('Success callback invoked unexpectedly');
28 testFailed('Error callback invoked unexpectedly');
33 testFailed('Success callback invoked unexpectedly');
44 testFailed('Error callback invoked unexpectedly');
delayed-permission-denied.js 14 testFailed('Success callback invoked unexpectedly');
24 testFailed('Error callback invoked unexpectedly');
reentrant-error.js 15 testFailed('Success callback invoked unexpectedly');
19 testFailed('Error callback invoked unexpectedly');
38 testFailed('Success callback invoked unexpectedly');
reentrant-success.js 19 testFailed('Success callback invoked unexpectedly');
31 testFailed('Error callback invoked unexpectedly');
48 testFailed('Error callback invoked unexpectedly');
disconnected-frame-already.js 16 testFailed('Success callback invoked unexpectedly');
19 testFailed('Error callback invoked unexpectedly');
multiple-requests.js 23 testFailed('Error callback invoked unexpectedly');
32 testFailed('Error callback invoked unexpectedly');
maximum-age.js 39 testFailed('Error callback invoked unexpectedly');
52 testFailed('Error callback invoked unexpectedly');
66 testFailed('Error callback invoked unexpectedly');
74 testFailed('Success callback invoked unexpectedly');
permission-denied-already-clear-watch.js 12 testFailed('Success callback invoked unexpectedly');
26 testFailed('Success callback invoked unexpectedly');
permission-denied-already-error.js 12 testFailed('Success callback invoked unexpectedly');
29 testFailed('Success callback invoked unexpectedly');
permission-denied-already-success.js 12 testFailed('Success callback invoked unexpectedly');
26 testFailed('Success callback invoked unexpectedly');
  /external/junit/src/junit/runner/
TestRunListener.java 19 public void testFailed(int status, String testName, String trace);
  /frameworks/base/test-runner/src/junit/runner/
TestRunListener.java 19 public void testFailed(int status, String testName, String trace);
  /external/webkit/LayoutTests/fast/events/touch/resources/
create-touch-event.js 14 testFailed("An exception was thrown: " + e.message);
  /external/webkit/Tools/TestWebKitAPI/
TestsController.h 44 void testFailed(const char* file, int line, const char* message);
  /external/webkit/LayoutTests/fast/js/resources/
standalone-pre.js 23 function testFailed(msg)
81 testFailed(_a + " should be " + _bv + ". Threw exception " + exception);
85 testFailed(_a + " should be " + _bv + ". Was " + stringify(_av) + ".");
87 testFailed(_a + " should be " + _bv + " (of type " + typeof _bv + "). Was " + _av + " (of type " + typeof _av + ").");
112 testFailed(_a + " should be undefined. Threw exception " + exception);
116 testFailed(_a + " should be undefined. Was " + _av);
138 testFailed(_a + " should throw " + (typeof _e == "undefined" ? "an exception" : _ev) + ". Threw exception " + exception + ".");
140 testFailed(_a + " should throw " + (typeof _e == "undefined" ? "an exception" : _ev) + ". Was undefined.");
142 testFailed(_a + " should throw " + (typeof _e == "undefined" ? "an exception" : _ev) + ". Was " + _av + ".");
js-test-pre.js 34 function testFailed(msg)
92 testFailed(_a + " threw exception " + e);
111 testFailed(_a + " should be " + _bv + ". Threw exception " + exception);
115 testFailed(_a + " should be " + _bv + ". Was " + stringify(_av) + ".");
117 testFailed(_a + " should be " + _bv + " (of type " + typeof _bv + "). Was " + _av + " (of type " + typeof _av + ").");
145 testFailed("Evaluating " + actual + ": Threw exception " + e);
179 testFailed(_a + " should be non-zero. Threw exception " + exception);
183 testFailed(_a + " should be non-zero. Was " + _av);
197 testFailed(_a + " should be non-null. Threw exception " + exception);
201 testFailed(_a + " should be non-null. Was " + _av)
    [all...]
  /external/webkit/LayoutTests/storage/domstorage/script-tests/
quota.js 7 testFailed(storageString + " DOES NOT exist");
29 testFailed("Did not hit quota error.");
45 testFailed("Exception: " + e);
53 testFailed(storageString + " DOES NOT exist");
77 testFailed("Exception: " + e);
  /external/webkit/Tools/WebKitAPITest/
Test.h 55 #define TEST_ASSERT(expression) do { if (!(expression)) { TestsController::shared().testFailed(__FILE__, __LINE__, #expression); return; } } while (0)
TestsController.h 45 void testFailed(const char* file, int line, const char* message);
  /sdk/ddms/libs/ddmlib/src/com/android/ddmlib/testrunner/
ITestRunListener.java 30 * <li> [testFailed]
73 public void testFailed(TestFailure status, TestIdentifier test, String trace);
78 * If {@link #testFailed} was not invoked, this test passed. Also returns any key/value
  /external/webkit/LayoutTests/fast/dom/DeviceOrientation/script-tests/
add-listener-from-callback.js 26 testFailed('Too many events for first listener.');
34 testFailed('Too many events for second listener.');

Completed in 2019 milliseconds

1 2 3 4 5