-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathfloat64_float64_test.go
142 lines (120 loc) · 1.95 KB
/
float64_float64_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
141
142
package cast
import (
"math"
"testing"
)
func TestFloat64FromFloat64(t *testing.T) {
tests := []struct{
Value float64
}{
{
Value: math.Inf(-1),
},
{
Value: -math.MaxFloat64,
},
{
Value: -math.Pi,
},
{
Value: -math.E,
},
{
Value: -math.Sqrt2,
},
{
Value: -1.0,
},
{
Value: -math.Ln2,
},
{
Value: -math.SmallestNonzeroFloat64,
},
{
Value: 0.0,
},
{
Value: math.SmallestNonzeroFloat64,
},
{
Value: math.Ln2,
},
{
Value: 1.0,
},
{
Value: math.Sqrt2,
},
{
Value: math.E,
},
{
Value: math.Pi,
},
{
Value: math.MaxFloat64,
},
{
Value: math.Inf(+1),
},
{
Value: math.NaN(),
},
}
{
const numRand = 20
for i:=0; i<numRand; i++ {
test := struct{
Value float64
}{
Value: randomness.Float64(),
}
tests = append(tests, test)
test = struct{
Value float64
}{
Value: -randomness.Float64(),
}
tests = append(tests, test)
test = struct{
Value float64
}{
Value: randomness.Float64() * math.MaxFloat64,
}
tests = append(tests, test)
test = struct{
Value float64
}{
Value: -randomness.Float64() * math.MaxFloat64,
}
tests = append(tests, test)
test = struct{
Value float64
}{
Value: randomness.Float64() * 999999999,
}
tests = append(tests, test)
test = struct{
Value float64
}{
Value: -randomness.Float64() * 999999999,
}
tests = append(tests, test)
}
}
for testNumber, test := range tests {
x, err := Float64(test.Value)
if nil != err {
t.Errorf("For test #%d, did not expect an error, but actually got one: (%T) %v", testNumber, err, err)
continue
}
y := float64(x)
if expected, actual := test.Value, y; expected != actual {
if !(math.IsNaN(float64(expected)) && math.IsNaN(float64(actual))) {
t.Errorf("For test #%d, expected %v, but actually got %v.", testNumber, expected, actual)
continue
}
}
}
}