-
Notifications
You must be signed in to change notification settings - Fork 0
/
slice_test.go
140 lines (135 loc) · 2.12 KB
/
slice_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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
package uniq_test
import (
"math"
"testing"
"github.com/gochore/uniq"
)
func TestInts(t *testing.T) {
type args struct {
s []int
}
tests := []struct {
name string
args args
}{
{
name: "nil",
args: args{
s: nil,
},
},
{
name: "empty",
args: args{
s: []int{},
},
},
{
name: "[]int",
args: args{
s: []int{1, 9, 9, 4, 0, 9, 2, 6, 2, 0, 1, 4, 0, 7, 1, 3},
},
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
t.Log(tt.args.s)
defer func() {
t.Log(tt.args.s)
}()
tt.args.s = tt.args.s[:uniq.Ints(tt.args.s)]
if !uniq.IntsAreSorted(tt.args.s) {
t.Fail()
t.Log(tt.args.s)
}
})
}
}
func TestFloat64s(t *testing.T) {
type args struct {
s []float64
}
tests := []struct {
name string
args args
}{
{
name: "nil",
args: args{
s: nil,
},
},
{
name: "empty",
args: args{
s: []float64{},
},
},
{
name: "[]float64",
args: args{
s: []float64{1, 9, 9, 4, 0, 9, 2, 6, 2, 0, 1, 4, 0, 7, 1, 3},
},
},
{
name: "[]float64 with NaN",
args: args{
s: []float64{math.NaN(), 1, 9, 9, 4, 0, 9, 2, 6, math.NaN(), 2, 0, 1, 4, 0, 7, 1, 3, math.NaN()},
},
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
t.Log(tt.args.s)
defer func() {
t.Log(tt.args.s)
}()
tt.args.s = tt.args.s[:uniq.Float64s(tt.args.s)]
if !uniq.Float64sAreSorted(tt.args.s) {
t.Fail()
t.Log(tt.args.s)
}
})
}
}
func TestStrings(t *testing.T) {
type args struct {
s []string
}
tests := []struct {
name string
args args
}{
{
name: "nil",
args: args{
s: nil,
},
},
{
name: "empty",
args: args{
s: []string{},
},
},
{
name: "[]string",
args: args{
s: []string{"1", "9", "9", "4", "0", "9", "2", "6", "2", "0", "1", "4", "0", "7", "1", "3"},
},
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
t.Log(tt.args.s)
defer func() {
t.Log(tt.args.s)
}()
tt.args.s = tt.args.s[:uniq.Strings(tt.args.s)]
if !uniq.StringsAreSorted(tt.args.s) {
t.Fail()
t.Log(tt.args.s)
}
})
}
}