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