gpt4 book ai didi

javascript - 如何用Jasmine编写参数化测试?

转载 作者:行者123 更新时间:2023-12-03 11:45:47 24 4
gpt4 key购买 nike

如何使用 Jasmine 单元测试框架(或任何其他 BDD JavaScript 测试框架)编写参数化测试?

最佳答案

据我所知 Jasmine 不支持参数化测试。所以我想出了这个简单的方法:

describe('Testing module', function() {
var testCases = [
{ param1: 'testcase1Param1', param2: 'testCase1Param2'},
{ param1: 'testcase2Param1', param2: 'testCase2Param2'},
];

/*jshint -W083 */ //Disable warning for function created inside loop
//this is parametrized test and it's better readable this way.
testCases.forEach(function(testCase) {
describe('for test case: param1" ' + testCase.param1 +
' and param2: "' + testCase.param2 + '"', function() {
//do your testing
}
}
});

关于javascript - 如何用Jasmine编写参数化测试?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26056821/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com