forked from halfrost/LeetCode-Go
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathInterval_test.go
59 lines (50 loc) · 851 Bytes
/
Interval_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
package structures
import (
"testing"
"github.com/stretchr/testify/assert"
)
func Test_Interval2Ints(t *testing.T) {
ast := assert.New(t)
actual := Interval2Ints(Interval{Start: 1, End: 2})
expected := []int{1, 2}
ast.Equal(expected, actual)
}
func Test_IntervalSlice2Intss(t *testing.T) {
ast := assert.New(t)
actual := IntervalSlice2Intss(
[]Interval{
Interval{
Start: 1,
End: 2,
},
Interval{
Start: 3,
End: 4,
},
},
)
expected := [][]int{
[]int{1, 2},
[]int{3, 4},
}
ast.Equal(expected, actual)
}
func Test_Intss2IntervalSlice(t *testing.T) {
ast := assert.New(t)
expected := []Interval{
Interval{
Start: 1,
End: 2,
},
Interval{
Start: 3,
End: 4,
},
}
actual := Intss2IntervalSlice([][]int{
[]int{1, 2},
[]int{3, 4},
},
)
ast.Equal(expected, actual)
}