我正在为CFML编写MxUnit测试框架。在其中,我想检查函数的返回值是否是有效的JSON。目前我使用的是:
assertEquals(True,IsJSON(userEventItems),'The return must be json');
是否有任何MXUnit函数来检查断言是否为JSON,如MXUnit中的assertIsQuery()
?
根据MXUnit内置断言页面,没有函数。最好的方法是按自己的方式测试函数,或者使用assertTrue()
函数
assertTrue(isJSON(userEventItems), 'The return must be json');