< prev index next >

test/src/jdk/nashorn/api/scripting/test/PluggableJSObjectTest.java

Print this page

        

@@ -45,10 +45,13 @@
 /**
  * Tests for pluggable external impls. of jdk.nashorn.api.scripting.JSObject.
  *
  * JDK-8024615: Refactor ScriptObjectMirror and JSObject to support external
  * JSObject implementations.
+ *
+ * @test
+ * @run testng jdk.nashorn.api.scripting.test.PluggableJSObjectTest
  */
 @SuppressWarnings("javadoc")
 public class PluggableJSObjectTest {
     public static class MapWrapperObject extends AbstractJSObject {
         private final HashMap<String, Object> map = new LinkedHashMap<>();
< prev index next >