summaryrefslogtreecommitdiffstats
path: root/debian/uncrustify-trinity/uncrustify-trinity-0.74.0/tests/expected/oc/50095-box.m
blob: 45b0de1bff046117377b85301e9ca85f9cc5818a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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