我正在为其中一个应用程序连接 jasmine 测试用例。我刚开始学习茉莉花。下面是我的脚本代码
var aclChecker = function(app,config) {
validateResourceAccess = function (req, res, next) {
req.callanotherMethod();
res.send(401,'this is aerror message');
}
}
现在我想 spyOnres
和req
对象知道是否调用了 send 方法。
由于 req 和 res 不是全局变量,我对如何在 junit 规范中创建间谍有疑问
请帮忙!!!!!!!!