-
Notifications
You must be signed in to change notification settings - Fork 0
/
add.js
61 lines (56 loc) · 1.36 KB
/
add.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
function add(x,y){
if(Number(x)==x && Number(y)==y){
return Number(x) + Number(y)
}
return x+y
}
// console.log(3 == add(1,2))
// function add(x, y){
// // 动代码 测试可以报错提醒
// if(Number(x)==x && Number(y)==y){
// return Number(x) + Number(y)
// }else if(typeof x=='object' && typeof y=='object'){
// return Object.assign({},x,y)
// }
// return x + y
// }
function test(title, fn){
try{
fn()
console.log(title,'测试通过')
}catch(e){
console.log(e)
console.error(title,'测试失败')
}
}
function expect(ret){
return {
toBe(arg){
if(ret!==arg){
throw Error(`预计和实际不符,预期仕${arg},实际是${ret}`)
}
},
toEqual(arg){
const argString = JSON.stringify(arg)
const retString = JSON.stringify(ret)
if(retString!== argString){
throw Error(`预计和实际不符,预期仕${argString},实际是${retString}`)
}
}
}
}
// 我们为什么需要测试 (单测)
// 测试用例
test('测试数字想加',()=>{
expect(add(1,2)).toBe(3)
})
// // TDD 先写测试
test('测试数字和字符串数字想加',()=>{
expect(add(1,'2')).toBe(3)
})
// test('测试字符串数字想加',()=>{
// expect(add('1','2')).toBe(3)
// })
// test('对象的想加',()=>{
// expect(add({name:'kkb'},{age:7})).toEqual({name:'kkb',age:7})
// })