OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:testFailed
(Results
1 - 25
of
72
) sorted by null
1
2
3
/dalvik/dx/src/junit/runner/
TestRunListener.java
18
public void
testFailed
(int status, String testName, String trace);
/external/junit/src/junit/runner/
TestRunListener.java
18
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);
/libcore/junit/src/test/java/junit/runner/
TestRunListener.java
18
public void
testFailed
(int status, String testName, String trace);
/sdk/ddms/libs/ddmlib/src/com/android/ddmlib/testrunner/
ITestRunListener.java
65
* If {@link #
testFailed
} was not invoked, this test passed.
79
public void
testFailed
(TestFailure status, TestIdentifier test, String trace);
/external/webkit/LayoutTests/fast/js/resources/
standalone-pre.js
23
function
testFailed
(msg)
79
testFailed
(_a + " should be " + _bv + ". Threw exception " + exception);
83
testFailed
(_a + " should be " + _bv + ". Was " + stringify(_av) + ".");
85
testFailed
(_a + " should be " + _bv + " (of type " + typeof _bv + "). Was " + _av + " (of type " + typeof _av + ").");
110
testFailed
(_a + " should be undefined. Threw exception " + exception);
114
testFailed
(_a + " should be undefined. Was " + _av);
136
testFailed
(_a + " should throw " + (typeof _e == "undefined" ? "an exception" : _ev) + ". Threw exception " + exception + ".");
138
testFailed
(_a + " should throw " + (typeof _e == "undefined" ? "an exception" : _ev) + ". Was undefined.");
140
testFailed
(_a + " should throw " + (typeof _e == "undefined" ? "an exception" : _ev) + ". Was " + _av + ".");
js-test-pre.js
33
function
testFailed
(msg)
87
testFailed
(_a + " threw exception " + e);
105
testFailed
(_a + " should be " + _bv + ". Threw exception " + exception);
109
testFailed
(_a + " should be " + _bv + ". Was " + stringify(_av) + ".");
111
testFailed
(_a + " should be " + _bv + " (of type " + typeof _bv + "). Was " + _av + " (of type " + typeof _av + ").");
139
testFailed
("Evaluating " + actual + ": Threw exception " + e);
173
testFailed
(_a + " should be non-zero. Threw exception " + exception);
177
testFailed
(_a + " should be non-zero. Was " + _av);
191
testFailed
(_a + " should be non-null. Threw exception " + exception);
195
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);
clear.js
7
testFailed
(storageString + " DOES NOT exist");
/external/webkit/LayoutTests/fast/dom/Geolocation/resources/
reentrant-error.js
11
testFailed
('Success callback invoked unexpectedly');
15
testFailed
('Error callback invoked unexpectedly');
34
testFailed
('Success callback invoked unexpectedly');
reentrant-success.js
16
testFailed
('Success callback invoked unexpectedly');
28
testFailed
('Error callback invoked unexpectedly');
45
testFailed
('Error callback invoked unexpectedly');
maximum-age.js
36
testFailed
('Error callback invoked unexpectedly');
48
testFailed
('Error callback invoked unexpectedly');
61
testFailed
('Error callback invoked unexpectedly');
69
testFailed
('Success callback invoked unexpectedly');
permission-denied-already-clear-watch.js
9
testFailed
('Success callback invoked unexpectedly');
23
testFailed
('Success callback invoked unexpectedly');
permission-denied-already-error.js
9
testFailed
('Success callback invoked unexpectedly');
25
testFailed
('Success callback invoked unexpectedly');
permission-denied-already-success.js
9
testFailed
('Success callback invoked unexpectedly');
23
testFailed
('Success callback invoked unexpectedly');
permission-denied-stops-watches.js
11
testFailed
('Success callback invoked unexpectedly');
15
testFailed
('Error callback invoked unexpectedly : ' + error.message);
watch.js
48
testFailed
('Success callback invoked unexpectedly');
58
testFailed
('Error callback invoked unexpectedly');
permission-denied.js
8
testFailed
('Success callback invoked unexpectedly');
success.js
21
testFailed
('Error callback invoked unexpectedly');
timeout-zero.js
7
testFailed
('Success callback invoked unexpectedly');
timeout.js
21
testFailed
('Error callback invoked unexpectedly');
error.js
10
testFailed
('Success callback invoked unexpectedly');
position-string.js
24
testFailed
('Error callback invoked unexpectedly');
/external/webkit/WebKitTools/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);
Completed in 107 milliseconds
1
2
3