Lines Matching refs:tc
53 for _, tc := range tests {
54 if got := CamelCase(tc.in); got != tc.want {
55 t.Errorf("CamelCase(%q) = %q, want %q", tc.in, got, tc.want)
71 for _, tc := range tests {
75 GoPackage: &tc.in,
80 if impPath != tc.impPath || pkg != tc.pkg || ok != tc.ok {
81 t.Errorf("go_package = %q => (%q, %q, %t), want (%q, %q, %t)", tc.in,
82 impPath, pkg, ok, tc.impPath, tc.pkg, tc.ok)