-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathintSquareOfTwo_test.go
63 lines (55 loc) · 997 Bytes
/
intSquareOfTwo_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
57
58
59
60
61
62
63
package main
// go test -v
// go test -bench=.
import (
"fmt"
"testing"
)
func TestSliceOfBytes(t *testing.T) {
ans := SliceOfBytes(2)
if !ans {
t.Errorf("IntMin(2, -2) = %v; want -2", ans)
}
}
func TestSliceOfBytesTableDriven(t *testing.T) {
var tests = []struct {
a int
want bool
}{
{1, false},
{2, true},
{-256, true},
{1024, true},
{1023, false},
}
for _, tt := range tests {
testName := fmt.Sprintf("%d", tt.a)
t.Run(testName, func(t *testing.T) {
ans := SliceOfBytes(tt.a)
if ans != tt.want {
t.Errorf("got %v, want %v", ans, tt.want)
}
})
}
}
func BenchmarkSliceOfBytes(b *testing.B) {
for i := 0; i < b.N; i++ {
for j:=-2048; j <= 2048; j++ {
SliceOfBytes(j)
}
}
}
func BenchmarkStrConvToBytes(b *testing.B) {
for i := 0; i < b.N; i++ {
for j:=-2048; j <= 2048; j++ {
StrConvToBytes(j)
}
}
}
func BenchmarkBitShift(b *testing.B) {
for i := 0; i < b.N; i++ {
for j:=-2048; j <= 2048; j++ {
BitShift(j)
}
}
}