1 // RUN: clang-tidy %s -checks=readability-identifier-naming \
2 // RUN:   -config="{CheckOptions: [\
3 // RUN:   {key: readability-identifier-naming.FunctionCase, value: camelback}, \
4 // RUN:   {key: readability-identifier-naming.VariableCase, value: camelBack}, \
5 // RUN:   {key: readability-identifier-naming.ClassCase, value: UUPER_CASE}, \
6 // RUN:   {key: readability-identifier-naming.StructCase, value: CAMEL}, \
7 // RUN:   {key: readability-identifier-naming.EnumCase, value: AnY_cASe}, \
8 // RUN:   ]}" 2>&1 | FileCheck %s --implicit-check-not="{{warning|error}}:"
9 
10 // CHECK-DAG: warning: invalid configuration value 'camelback' for option 'readability-identifier-naming.FunctionCase'; did you mean 'camelBack'? [clang-tidy-config]
11 // CHECK-DAG: warning: invalid configuration value 'UUPER_CASE' for option 'readability-identifier-naming.ClassCase'; did you mean 'UPPER_CASE'? [clang-tidy-config]
12 // Don't try to suggest an alternative for 'CAMEL'
13 // CHECK-DAG: warning: invalid configuration value 'CAMEL' for option 'readability-identifier-naming.StructCase' [clang-tidy-config]
14 // This fails on the EditDistance, but as it matches ignoring case suggest the correct value
15 // CHECK-DAG: warning: invalid configuration value 'AnY_cASe' for option 'readability-identifier-naming.EnumCase'; did you mean 'aNy_CasE'? [clang-tidy-config]
16