function test(desc, fn){
try{
fn();
console.log(`? 通过测试用例`)
}catch{
console.log(`? 没有通过测试用例`)
}
}
function expect(ret){
return {
toMatch(expRet){
if(typeof ret === 'string'){ throw Error('') }
if(!ret.includes(expRet)){ throw Error('') }
}
}
}
欢迎光临 51Testing软件测试论坛 (http://bbs.51testing.com/) | Powered by Discuz! X3.2 |