-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
runemap_test.go
50 lines (47 loc) · 936 Bytes
/
runemap_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
// Copyright (c) 2023 Joshua Rich <joshua.rich@gmail.com>
//
// This software is released under the MIT License.
// https://opensource.org/licenses/MIT
package gokbd
import "testing"
func TestCodeAndCase(t *testing.T) {
type args struct {
r rune
}
tests := []struct {
name string
args args
want int
want1 bool
}{
{
name: "rune exists (lowercase)",
args: args{r: 'a'},
want: 30,
want1: false,
},
{
name: "rune exists (uppercase)",
args: args{r: 'A'},
want: 30,
want1: true,
},
{
name: "rune does not exist",
args: args{r: '🦍'},
want: 0,
want1: false,
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
got, got1 := CodeAndCase(tt.args.r)
if got != tt.want {
t.Errorf("CodeAndCase() got = %v, want %v", got, tt.want)
}
if got1 != tt.want1 {
t.Errorf("CodeAndCase() got1 = %v, want %v", got1, tt.want1)
}
})
}
}