OLD | NEW |
| 1 CONSOLE ERROR: line 118: Uncaught #<DOMExceptionInPrivateScript> |
| 2 CONSOLE ERROR: line 119: Uncaught #<DOMExceptionInPrivateScript> |
| 3 CONSOLE ERROR: line 123: Uncaught #<DOMExceptionInPrivateScript> |
| 4 CONSOLE ERROR: line 127: Uncaught Error: method threw Error |
| 5 CONSOLE ERROR: line 131: Uncaught TypeError: method threw TypeError |
| 6 CONSOLE ERROR: line 135: Uncaught RangeError: method threw RangeError |
| 7 CONSOLE ERROR: line 139: Uncaught SyntaxError: method threw SyntaxError |
| 8 CONSOLE ERROR: line 143: Uncaught ReferenceError: method threw ReferenceError |
| 9 CONSOLE ERROR: line 147: Uncaught RangeError: Maximum call stack size exceeded |
1 Unittests for private scripts. | 10 Unittests for private scripts. |
2 | 11 |
3 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE
". | 12 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE
". |
4 | 13 |
5 | 14 |
6 PASS privateScriptTest.return123() is 123 | 15 PASS privateScriptTest.return123() is 123 |
7 PASS privateScriptTest.echoInteger(111) is 111 | 16 PASS privateScriptTest.echoInteger(111) is 111 |
8 PASS privateScriptTest.echoString("foo") is "foo" | 17 PASS privateScriptTest.echoString("foo") is "foo" |
9 PASS privateScriptTest.addInteger(111, 222) is 333 | 18 PASS privateScriptTest.addInteger(111, 222) is 333 |
10 PASS privateScriptTest.addString("foo", "bar") is "foobar" | 19 PASS privateScriptTest.addString("foo", "bar") is "foobar" |
(...skipping 28 matching lines...) Expand all Loading... |
39 PASS privateScriptTest.voidMethodWithStackOverflow() threw exception RangeError:
Failed to execute 'voidMethodWithStackOverflow' on 'PrivateScriptTest': Maximum
call stack size exceeded. | 48 PASS privateScriptTest.voidMethodWithStackOverflow() threw exception RangeError:
Failed to execute 'voidMethodWithStackOverflow' on 'PrivateScriptTest': Maximum
call stack size exceeded. |
40 PASS privateScriptTest.addIntegerImplementedInCPP(111, 222) is 333 | 49 PASS privateScriptTest.addIntegerImplementedInCPP(111, 222) is 333 |
41 PASS privateScriptTest.stringAttributeImplementedInCPP is "undefined" | 50 PASS privateScriptTest.stringAttributeImplementedInCPP is "undefined" |
42 PASS privateScriptTest.stringAttributeImplementedInCPP is "foo" | 51 PASS privateScriptTest.stringAttributeImplementedInCPP is "foo" |
43 PASS privateScriptTest.addIntegerImplementedInCPPForPrivateScriptOnly is undefin
ed. | 52 PASS privateScriptTest.addIntegerImplementedInCPPForPrivateScriptOnly is undefin
ed. |
44 PASS privateScriptTest.stringAttributeImplementedInCPPForPrivateScriptOnly is un
defined. | 53 PASS privateScriptTest.stringAttributeImplementedInCPPForPrivateScriptOnly is un
defined. |
45 PASS successfullyParsed is true | 54 PASS successfullyParsed is true |
46 | 55 |
47 TEST COMPLETE | 56 TEST COMPLETE |
48 | 57 |
OLD | NEW |