forked from yeqown/go-qrcode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mask_evaluation_test.go
56 lines (47 loc) · 1.24 KB
/
mask_evaluation_test.go
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
package qrcode
import (
"testing"
"github.com/stretchr/testify/assert"
)
//func Test_rule3_refactor(t *testing.T) {
// qrc, err := newMatrix("baidu.com google.com qq.com sina.com apple.com")
// assert.NoError(t, err)
// _ = qrc
// old := rule3_backup(qrc.mat)
// refactor := rule3(qrc.mat)
// assert.Equal(t, old, refactor)
//}
func Benchmark_rule3(b *testing.B) {
qrc, err := New("baidu.com google.com qq.com sina.com apple.com")
assert.NoError(b, err)
b.ResetTimer()
for i := 0; i < b.N; i++ {
_ = rule3(qrc.mat)
}
}
//func Test_rule1_refactor(t *testing.T) {
// qrc, err := newMatrix("baidu.com google.com qq.com sina.com apple.com")
// assert.NoError(t, err)
// qrc.mat.Print()
//
// old := rule1_backup(qrc.mat)
// refactor := rule1(qrc.mat)
// assert.Equal(t, old, refactor)
//}
func Benchmark_rule1(b *testing.B) {
qrc, err := New("baidu.com google.com qq.com sina.com apple.com")
assert.NoError(b, err)
b.ResetTimer()
for i := 0; i < b.N; i++ {
_ = rule1(qrc.mat)
}
}
//func Test_rule4_refactor(t *testing.T) {
// qrc, err := newMatrix("baidu.com google.com qq.com sina.com apple.com")
// assert.NoError(t, err)
// //qrc.mat.Print()
//
// old := rule4_backup(qrc.mat)
// refactor := rule4(qrc.mat)
// assert.Equal(t, old, refactor)
//}