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

1 2 3 4 5 6 7 8 910

  /external/junit/src/junit/runner/
TestRunListener.java 19 public void testFailed(int status, String testName, String trace);
BaseTestRunner.java 75 testFailed(TestRunListener.STATUS_ERROR, test, t);
79 testFailed(TestRunListener.STATUS_FAILURE, test, t);
88 public abstract void testFailed(int status, Test test, Throwable t);
  /external/v8/test/webkit/
date-set-to-nan.js 89 testFailed("date(NaN).set" + functionNameRoot + "(" + setValue + params[steps - 1]
95 testFailed("date.get" + functionNameRoot + "() was " + getResult + " instead of NaN");
110 testFailed("date(NaN).set" + functionNameRoot + "(" + setValue + ") was " + setResult + " instead of " + setValue);
115 testFailed("date.get" + functionNameRoot + "() was " + getResult + " instead of " + setValue);
131 testFailed("date.get" + functionNameRoot + "() was " + getResult + " instead of " + setValue);
136 testFailed("date.getMilliseconds() was " + getResult + " instead of 0");
141 testFailed("date.getSeconds() was " + getResult + " instead of 0");
146 testFailed("date.getMinutes() was " + getResult + " instead of 0");
151 testFailed("date.getHours() was " + getResult + " instead of 0");
156 testFailed("date.getDate() was " + getResult + " instead of 1")
    [all...]
cached-call-uninitialized-arguments.js 42 testFailed(_a + " should be undefined. Threw exception " + exception);
46 testFailed(_a + " should be undefined. Was " + _av);
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/VirtualMachine/
CapabilitiesNewTest.java 97 boolean testFailed = false;
103 testFailed = true;
110 if ( testFailed ) {
  /external/v8/test/webkit/fast/js/
Promise-static-race.js 41 testFailed('Promise.race([p4, p5]) is fulfilled.');
43 testFailed('Promise.race([p4, p5]) is rejected.');
48 testFailed('Promise.race([]) is fulfilled.');
50 testFailed('Promise.race([]) is rejected.');
54 testFailed('Promise.race() is fulfilled.');
59 testFailed('Promise.race({}) is fulfilled.');
69 testFailed('Promise.race([p4, p1, p6]) is rejected.');
73 testFailed('Promise.race([p4, p6, p1]) is fulfilled.');
85 testFailed('Promise.race([p9]) is rejected.');
94 testFailed('Promise.race([p4,,]) is rejected.')
    [all...]
Promise-static-all.js 41 testFailed('Promise.all([p1, p2, p5]) is fulfilled.');
43 testFailed('Promise.all([p1, p2, p5]) is rejected.');
47 testFailed('Promise.all() is fulfilled.');
55 testFailed('Promise.all([]) is rejected.');
66 testFailed('Promise.all([p1, p2, p3]) is rejected.');
70 testFailed('Promise.all([p1, p6, p5]) is fulfilled.');
83 testFailed('Promise.all([p9]) is rejected.');
95 testFailed('Promise.all([p9,,,]) is rejected.');
107 testFailed('Promise.all([p9,42]) is rejected.');
111 testFailed('Promise.all({}) is fulfilled.')
    [all...]
Promise-chained-then.js 37 testFailed('rrejected');
45 testFailed('rejected');
47 testFailed('fulfilled');
55 testFailed('fulfilled');
67 testFailed('rejected');
Promise-catch.js 52 testFailed('rejected');
63 testFailed('catch(null) should not throw an exception');
68 testFailed('catch(37) should not throw an exception');
Promise-then-callback-receiver.js 37 testFailed('rejected');
41 testFailed('fulfilled');
Promise-init.js 50 testFailed('new Promise(function() { throw Error(\'foo\'); }) should not throw an exception.');
68 testFailed('rejected');
Promise-resolve-chain.js 47 testFailed('rejected');
51 testFailed('fulfilled');
Promise-then.js 55 testFailed('resolved');
64 testFailed('rejected');
Promise-already-rejected.js 35 testFailed('fulfilled');
Promise-already-resolved.js 41 testFailed('rejected');
Promise-exception.js 36 testFailed('Unexpected invocation of onFulfilled');
Promise-onFulfilled-deep.js 33 promise = promise.then(function (value) { return value + 1; }, function () { testFailed('rejected'); });
Promise-onRejected-deep.js 33 promise = promise.then(function (value) { testFailed('fulfilled'); throw value + 1; }, function (value) { throw value + 1; });
  /external/v8/test/webkit/resources/
standalone-pre.js 53 function testFailed(msg)
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 + ").");
144 testFailed(_a + " should be undefined. Threw exception " + exception);
148 testFailed(_a + " should be undefined. Was " + _av);
170 testFailed(_a + " should throw " + (typeof _e == "undefined" ? "an exception" : _ev) + ". Threw exception " + exception + ".");
172 testFailed(_a + " should throw " + (typeof _e == "undefined" ? "an exception" : _ev) + ". Was undefined.");
174 testFailed(_a + " should throw " + (typeof _e == "undefined" ? "an exception" : _ev) + ". Was " + _av + ".");
  /cts/tools/tradefed-host/src/com/android/cts/tradefed/testtype/
ResultFilter.java 87 public void testFailed(TestIdentifier test, String trace) {
89 super.testFailed(test, trace);
SingleJUnitTestResultParser.java 87 listener.testFailed(mTestId, mStackTrace.toString());
  /external/v8/test/webkit/fast/js/kde/
func-decl.js 28 testFailed(msg + ": value has type " + typeof(val) + " , not:" + type);
35 testFailed(msg + ": value is " + val + " , not:" + expected);
47 testFailed("Scoping very broken!");
lval-exceptions.js 59 testFailed(f + " should throw exception " + exType + ". Threw exception " + exception + ".");
61 testFailed(f + " should throw exception " + exType + ". Was undefined.");
63 testFailed(f + " should throw exception " + exType + ". Was " + _av + ".");
72 testFailed(f + " threw an exception " + e + " when no exception expected");
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/launch/junit/runtime/
TestCollector.java 49 * @see com.android.ddmlib.testrunner.ITestRunListener#testFailed(com.android.ddmlib.testrunner.TestIdentifier, java.lang.String)
52 public synchronized void testFailed(TestIdentifier test, String trace) {
RemoteAdtTestRunner.java 406 public synchronized void testFailed(TestReferenceFailure ref) {
451 public void testFailed(TestIdentifier test, String trace) {
455 mNotifier.testFailed(failure);
463 mNotifier.testFailed(failure);

Completed in 324 milliseconds

1 2 3 4 5 6 7 8 910