468663ddbb
Former-commit-id: 1d6753294b2993e1fbf92de9366bb9544db4189b
15 lines
806 B
Objective-C
15 lines
806 B
Objective-C
// RUN: %check_clang_tidy %s objc-property-declaration %t \
|
|
// RUN: -config='{CheckOptions: \
|
|
// RUN: [{key: objc-property-declaration.Acronyms, value: "ABC;TGIF"}]}' \
|
|
// RUN: --
|
|
@class NSString;
|
|
|
|
@interface Foo
|
|
@property(assign, nonatomic) int AbcNotRealPrefix;
|
|
// CHECK-MESSAGES: :[[@LINE-1]]:34: warning: property name 'AbcNotRealPrefix' should use lowerCamelCase style, according to the Apple Coding Guidelines [objc-property-declaration]
|
|
// CHECK-FIXES: @property(assign, nonatomic) int abcNotRealPrefix;
|
|
@property(assign, nonatomic) int ABCCustomPrefix;
|
|
@property(strong, nonatomic) NSString *ABC_custom_prefix;
|
|
// CHECK-MESSAGES: :[[@LINE-1]]:40: warning: property name 'ABC_custom_prefix' should use lowerCamelCase style, according to the Apple Coding Guidelines [objc-property-declaration]
|
|
@end
|