summaryrefslogtreecommitdiffstats
path: root/debian/uncrustify-trinity/uncrustify-trinity-0.73.0/tests/input/oc/box.m
diff options
context:
space:
mode:
Diffstat (limited to 'debian/uncrustify-trinity/uncrustify-trinity-0.73.0/tests/input/oc/box.m')
-rw-r--r--debian/uncrustify-trinity/uncrustify-trinity-0.73.0/tests/input/oc/box.m12
1 files changed, 12 insertions, 0 deletions
diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.73.0/tests/input/oc/box.m b/debian/uncrustify-trinity/uncrustify-trinity-0.73.0/tests/input/oc/box.m
new file mode 100644
index 00000000..98a3516a
--- /dev/null
+++ b/debian/uncrustify-trinity/uncrustify-trinity-0.73.0/tests/input/oc/box.m
@@ -0,0 +1,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