-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathslice_test.go
51 lines (47 loc) · 1.04 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
// Copyright 2014 The lime Authors.
// Use of this source code is governed by a 2-clause
// BSD-style license that can be found in the LICENSE file.
package util
import (
"reflect"
"testing"
)
func TestExist(t *testing.T) {
test := struct {
array []string
elms []string
exps []bool
}{
[]string{"a", "b", "c", "d"},
[]string{"a", "t", "A"},
[]bool{true, false, false},
}
for i, exp := range test.exps {
if Exists(test.array, test.elms[i]) != exp {
t.Errorf("Expected in %v exist result of element %s be %v, but got %v", test.array, test.elms[i], exp, Exists(test.array, test.elms[i]))
}
}
}
func TestRemove(t *testing.T) {
tests := []struct {
slice []string
remove string
exp []string
}{
{
[]string{"a", "b", "c"},
"a",
[]string{"c", "b"},
},
{
[]string{"a", "b", "c"},
"k",
[]string{"a", "b", "c"},
},
}
for i, test := range tests {
if exp := Remove(test.slice, test.remove); !reflect.DeepEqual(exp, test.exp) {
t.Errorf("Test %d: Expected %v be equal to %v", i, exp, test.exp)
}
}
}