blob: 45b0de1bff046117377b85301e9ca85f9cc5818a [file] [log] [blame]
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