Here are there responses that were returned. boolean values that are returned when the set completes



this is the long test - did it set correctly? -

this is the String test - did it set correctly? -

this is the Integer test - did it set correctly? -

this is the Array test - did it set correctly? -

this is the Struct test - did it set correctly? -

this is the query test - did it set correctly? -
--------------------------------------------------------

this is the long test - did we retrieve it correctly? -

this is the string test - did we retrieve it correctly? -

this is the integer test - did we retrieve it correctly? -

this is the array test - did we retrieve it correctly? -

as a comparison, this is what it should look like
--------------------------------------



this is the struct test - did we retrieve it correctly? -

as a comparison, this is what it should look like
--------------------------------------



this is the query test - did we retrieve it correctly? -

as a comparison, this is what it should look like
--------------------------------------



this is the stats test -

this is the multi get test, this should be a struct of keys that have been set previously -

this is the multi get test, this should return an array of keys that have been set previously -
function GetClassHeirarchy(obj){ var thisClass = obj.GetClass(); var sReturn = thisClass.GetName(); do{ thisClass = thisClass.GetSuperClass(); sReturn = sReturn & " EXTENDS: #thisClass.GetName()#"; } while(CompareNoCase(thisClass.GetName(), 'java.lang.Object')); return sReturn; }