Lines Matching refs:input
22 input string
27 input: "S",
32 input: "String",
37 input: "STRING",
42 input: "StRiNg",
47 input: "Under_score",
52 input: "UNDER_SCORE",
57 input: "X86",
62 input: "X86_64",
68 if got := PropertyNameForField(tt.input); got != tt.want {
69 t.Errorf("PropertyNameForField(%v) = %v, want %v", tt.input, got, tt.want)
78 input string
83 input: "s",
88 input: "S",
93 input: "string",
98 input: "STRING",
103 input: "StRiNg",
109 if got := FieldNameForProperty(tt.input); got != tt.want {
110 t.Errorf("FieldNameForProperty(%v) = %v, want %v", tt.input, got, tt.want)