-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfunc_test.go
71 lines (60 loc) · 1.08 KB
/
func_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
package main
import (
"testing"
"github.com/stretchr/testify/assert"
)
func TestFtoC(t *testing.T) {
assert := assert.New(t)
testDelta := 0.05
testdata := []struct {
Input float64
Expect float64
}{
{-50.0, -45.56},
{-40.0, -40.00},
{0.0, -17.78},
{32.0, 0.0},
{98.6, 37.0},
{212.0, 100.0},
}
for _, val := range testdata {
assert.InDelta(val.Expect, FtoC(val.Input), testDelta)
}
}
func TestInToHpa(t *testing.T) {
assert := assert.New(t)
testDelta := 0.2
testdata := []struct {
Input float64
Expect float64
}{
{0, 0},
{29.92, 1013.25},
{29.38, 995},
{29.56, 1001},
{30.00, 1016},
{30.70, 1039.7},
{28.40, 961.8},
}
for _, val := range testdata {
assert.InDelta(val.Expect, InToHpa(val.Input), testDelta)
}
}
func TestMphToMps(t *testing.T) {
assert := assert.New(t)
testDelta := 0.1
testdata := []struct {
Input float64
Expect float64
}{
{0, 0},
{1, 0.4470},
{5, 2.2352},
{9, 4.0234},
{10, 4.4704},
{50, 22.352},
}
for _, val := range testdata {
assert.InDelta(val.Expect, MphToMps(val.Input), testDelta)
}
}