/modules/libjar/test/unit/test_bug458158.js
http://github.com/zpao/v8monkey · JavaScript · 11 lines · 10 code · 0 blank · 1 comment · 2 complexity · b76feaa60213d91ce1969a408a843099 MD5 · raw file
- function run_test() {
- var zReader = Components.classes["@mozilla.org/libjar/zip-reader;1"]
- .createInstance(Components.interfaces.nsIZipReader);
- try {
- zReader.open(null);
- do_throw("Shouldn't get here!");
- } catch (e if (e instanceof Components.interfaces.nsIException &&
- e.result == Components.results.NS_ERROR_NULL_POINTER)) {
- // do nothing, this test passes
- }
- }