Tests that Runtime can properly release objects and object groups. Running test: testReleaseObject Evaluating 'var a = {x:3};' Evaluating 'var b = {x:4};' Evaluate 'this' for object a { id : result : { result : { className : Object description : Object objectId : type : object } } } Evaluate 'this' for object b { id : result : { result : { className : Object description : Object objectId : type : object } } } Release "a" Evaluate 'this' for object a { error : { code : -32000 message : Could not find object with given id } id : } Evaluate 'this' for object b { id : result : { result : { className : Object description : Object objectId : type : object } } } Release "b" Evaluate 'this' for object a { error : { code : -32000 message : Could not find object with given id } id : } Evaluate 'this' for object b { error : { code : -32000 message : Could not find object with given id } id : } Running test: testReleaseObjectInvalid ReleaseObject with invalid params. { error : { code : -32602 data : Failed to deserialize params.objectId - BINDINGS: mandatory field missing at message : Invalid parameters } id : } Running test: testObjectGroups Evaluating 'var a = {x:3};' Evaluating 'var b = {x:4};' Evaluate "a" in objectGroup "x" Evaluate "b" in objectGroup "y" Evaluate 'this' for object a { id : result : { result : { className : Object description : Object objectId : type : object } } } Evaluate 'this' for object b { id : result : { result : { className : Object description : Object objectId : type : object } } } Release objectGroup "x" Evaluate 'this' for object a { error : { code : -32000 message : Could not find object with given id } id : } Evaluate 'this' for object b { id : result : { result : { className : Object description : Object objectId : type : object } } } Release objectGroup "y" Evaluate 'this' for object a { error : { code : -32000 message : Could not find object with given id } id : } Evaluate 'this' for object b { error : { code : -32000 message : Could not find object with given id } id : } Running test: testReleaseObjectGroupInvalid ReleaseObjectGroup with invalid params { error : { code : -32602 data : Failed to deserialize params.objectGroup - BINDINGS: mandatory field missing at message : Invalid parameters } id : }