Newer
Older
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
package runner
import (
"testing"
"github.com/stretchr/testify/require"
)
type ToBoolTestCase struct {
Input string
Ouput bool
ExpectError bool // if you expect an error put true here
}
func TestToBool(t *testing.T) {
tCases := []ToBoolTestCase{
{
Input: "1",
Ouput: true,
ExpectError: false,
},
{
Input: "0",
Ouput: false,
ExpectError: false,
},
{
Input: "True",
Ouput: true,
ExpectError: false,
},
{
Input: "true",
Ouput: true,
ExpectError: false,
},
{
Input: "False",
Ouput: false,
ExpectError: false,
},
{
Input: "false",
Ouput: false,
ExpectError: false,
},
{
Input: "flase",
Ouput: false,
ExpectError: true,
},
}
for _, tCase := range tCases {
res, err := toBool(tCase.Input)
if tCase.ExpectError {
require.Error(t, err)
} else {
require.NoError(t, err)
require.Equal(t, tCase.Ouput, res)
}
}
}