363738394041424344454647
assertNotNull(b); } public void testCtor2(){ try { new TestScriptEngine(null); fail("Should have thrown NPE"); } catch (NullPointerException expected) { } Bindings b = new SimpleBindings(); new TestScriptEngine(b); // should be OK }