I am working on a MxUnit test frame for CFML. In it, I want to check if the return value of a function is valid JSON or not. I am currently using:
assertEquals(True,IsJSON(userEventItems),'The return must be json');
Is there any MXUnit function for checking assert - is it JSON or not, for example assertIsQuery() in MXUnit?
source share