-
Notifications
You must be signed in to change notification settings - Fork 277
Expand file tree
/
Copy pathmin_test.go
More file actions
75 lines (69 loc) · 2.45 KB
/
Copy pathmin_test.go
File metadata and controls
75 lines (69 loc) · 2.45 KB
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
package funk
import (
"testing"
"github.com/stretchr/testify/assert"
)
func TestMinWithArrayNumericInput(t *testing.T) {
//Test Data
d1 := []int{8, 3, 4, 44, 0}
n1 := []int{}
d2 := []int8{3, 3, 5, 9, 1}
n2 := []int8{}
d3 := []int16{4, 5, 4, 33, 2}
n3 := []int16{}
d4 := []int32{5, 3, 21, 15, 3}
n4 := []int32{}
d5 := []int64{9, 3, 9, 1, 2}
n5 := []int64{}
//Calls
r1 := MinInt(d1)
r2 := MinInt8(d2)
r3 := MinInt16(d3)
r4 := MinInt32(d4)
r5 := MinInt64(d5)
// Assertions
assert.Equal(t, int(0), r1, "It should return the min value in array")
assert.Panics(t, func() { MinInt(n1) }, "It should panic")
assert.Equal(t, int8(1), r2, "It should return the min value in array")
assert.Panics(t, func() { MinInt8(n2) }, "It should panic")
assert.Equal(t, int16(2), r3, "It should return the min value in array")
assert.Panics(t, func() { MinInt16(n3) }, "It should panic")
assert.Equal(t, int32(3), r4, "It should return the min value in array")
assert.Panics(t, func() { MinInt32(n4) }, "It should panic")
assert.Equal(t, int64(1), r5, "It should return the min value in array")
assert.Panics(t, func() { MinInt64(n5) }, "It should panic")
}
func TestMinWithArrayFloatInput(t *testing.T) {
//Test Data
d1 := []float64{2, 38.3, 4, 4.4, 4}
n1 := []float64{}
d2 := []float32{2.9, 1.3, 4.23, 4.4, 7.7}
n2 := []float32{}
//Calls
r1 := MinFloat64(d1)
r2 := MinFloat32(d2)
// Assertions
assert.Equal(t, float64(2), r1, "It should return the min value in array")
assert.Panics(t, func() { MinFloat64(n1) }, "It should panic")
assert.Equal(t, float32(1.3), r2, "It should return the min value in array")
assert.Panics(t, func() { MinFloat32(n2) }, "It should panic")
}
func TestMinWithArrayInputWithStrings(t *testing.T) {
//Test Data
d1 := []string{"abc", "abd", "cbd"}
d2 := []string{"abc", "abd", "abe"}
d3 := []string{"abc", "foo", " "}
d4 := []string{"abc", "abc", "aaa"}
n1 := []string{}
//Calls
r1 := MinString(d1)
r2 := MinString(d2)
r3 := MinString(d3)
r4 := MinString(d4)
// Assertions
assert.Equal(t, "abc", r1, "It should print cbd because its first char is min in the list")
assert.Equal(t, "abc", r2, "It should print abe because its first different char is min in the list")
assert.Equal(t, " ", r3, "It should print foo because its first different char is min in the list")
assert.Equal(t, "aaa", r4, "It should print abc because its first different char is min in the list")
assert.Panics(t, func() { MinString(n1) }, "It should panic")
}