diff options
Diffstat (limited to 'js/src/tests/test262/harness/assert-throws-native.js')
-rw-r--r-- | js/src/tests/test262/harness/assert-throws-native.js | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/js/src/tests/test262/harness/assert-throws-native.js b/js/src/tests/test262/harness/assert-throws-native.js new file mode 100644 index 0000000000..a386264fbc --- /dev/null +++ b/js/src/tests/test262/harness/assert-throws-native.js @@ -0,0 +1,38 @@ +// Copyright (C) 2015 the V8 project authors. All rights reserved. +// This code is governed by the BSD license found in the LICENSE file. + +/*--- +description: > + Functions that throw instances of the specified native Error constructor + satisfy the assertion. +---*/ + +assert.throws(Error, function() { + throw new Error(); +}); + +assert.throws(EvalError, function() { + throw new EvalError(); +}); + +assert.throws(RangeError, function() { + throw new RangeError(); +}); + +assert.throws(ReferenceError, function() { + throw new ReferenceError(); +}); + +assert.throws(SyntaxError, function() { + throw new SyntaxError(); +}); + +assert.throws(TypeError, function() { + throw new TypeError(); +}); + +assert.throws(URIError, function() { + throw new URIError(); +}); + +reportCompare(0, 0); |