summaryrefslogtreecommitdiffstats
path: root/debian/uncrustify-trinity/uncrustify-trinity-0.74.0/tests/input/oc/box.m
blob: 98a3516aef0cbb1288bf78acdaa86f9d36735a44 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
NSArray *test = @[];
NSNumber *test = @ (42 * 2);
NSNumber *test = @4.0;
NSDictionary *test = @{@"foo":@"bar"};

@implementation UrlTemplateTest
- (void)test {
       NSString *test = @"";
       NSString *string = [[NSMutableString alloc] initWithString:@""];
       STAssertEqualObjects(string, @"", nil);
}
@end