Recognize stat_dir_type_empty
[govpp.git] / binapigen / strings_test.go
1 //  Copyright (c) 2020 Cisco and/or its affiliates.
2 //
3 //  Licensed under the Apache License, Version 2.0 (the "License");
4 //  you may not use this file except in compliance with the License.
5 //  You may obtain a copy of the License at:
6 //
7 //      http://www.apache.org/licenses/LICENSE-2.0
8 //
9 //  Unless required by applicable law or agreed to in writing, software
10 //  distributed under the License is distributed on an "AS IS" BASIS,
11 //  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 //  See the License for the specific language governing permissions and
13 //  limitations under the License.
14
15 package binapigen
16
17 import (
18         "testing"
19 )
20
21 func TestInitialism(t *testing.T) {
22         tests := []struct {
23                 name      string
24                 input     string
25                 expOutput string
26         }{
27                 {name: "id", input: "id", expOutput: "ID"},
28                 {name: "ipv6", input: "is_ipv6", expOutput: "IsIPv6"},
29                 {name: "ip6", input: "is_ip6", expOutput: "IsIP6"},
30         }
31         for _, test := range tests {
32                 t.Run(test.name, func(t *testing.T) {
33                         output := camelCaseName(test.input)
34                         if output != test.expOutput {
35                                 t.Errorf("expected %q, got %q", test.expOutput, output)
36                         }
37                 })
38         }
39 }