summaryrefslogtreecommitdiffstats
path: root/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/input/oc/blocks_align2.m
blob: f4e875c9e544a3b1869b302431913775b7521947 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
#import <Foundation/Foundation.h>

@interface TestClass : NSObject
@end

@implementation TestClass

- (void) method1 {
    [session mergeCommonMovieItems:^(NSURL *exportURL, NSError *exportError) {
        NSDictionary *settings = [self getSettings];

        [session postSessionWithCallback:^(NSError *error, id d) {
            if (error == nil) {
                [session uploadSessionWithCallback:^(NSError *error, id d) {
                    NSLog(@"OK");
                }];
            } else {
                NSLog(@"Something went wrong: %@", error);
                return;
            }
        }];
    }];
}

- (void)postSelection:(NSString *)testName
            selection:(NSString *)selection {
    dispatch_async(dispatch_get_main_queue(), ^{
        [self warmup:^{
            [self setReady];
        }];
    });

    dispatch_after(retryTime, dispatch_get_main_queue(), ^(void) {
        [self postSelection:testName selection:selection];
    });

    [TestClassRequest performMethod:TestClassRequestMethodPOST
                    responseHandler:^(NSURLResponse *response) {
                        dispatch_after(retryTime, dispatch_get_main_queue(), ^(void) {
                            [self postSelection:testName selection:selection];
                        });
                    }];

    [UIView transitionWithView:self.view.window duration:0.75 options:UIViewAnimationOptionTransitionFlipFromRight animations:^{
        [self presentViewController:viewController animated:NO completion:nil];
    } complete:^{}];
}

- (void)closeEditor {
    dispatch_async(dispatch_get_main_queue(), ^{
        if ([[TestClass sharedInstance] TestClassController] != nil && [[[TestClass sharedInstance] TestClassController] isKindOfClass:[TestClassSocialViewController class]]) {
            [[TestClass sharedInstance].TestClassTransitionController transitionToViewController:[[TestClass sharedInstance] TestClassController] withCompletitionHandler:^{
                [[TestClass sharedInstance] setTestClassVideoPlayerViewController:nil];
            }];
        } else if ([[TestClass sharedInstance] TestClassController] != nil && [[[TestClass sharedInstance] TestClassController] isKindOfClass:[TestClassModalViewController class]]) {
            [[TestClass sharedInstance].TestClassTransitionController transitionToViewController:nil withCompletitionHandler:^{
                [[TestClass sharedInstance] setTestClassVideoPlayerViewController:nil];
            }];
        } else {
            [[TestClass sharedInstance] hideTestClass];
        }
    });
}

- (void)testMethodWrapper {
    SEL testMethodForSelectorSel = @selector(testMethod:);
    __block void *testMethodForSelectorBlock = TestFunction(encoderTest, testMethodForSelectorSel, ^id (__typeof (encoderTest) self, SEL aSelector) {
        NSLog(@"OK");
    });
}

- (void) method2 {
    [TestClassRequest performMethod:TestClassRequestMethodPOST
                    responseHandler:^(NSURLResponse *response, NSData *responseData, NSError *error) {
                        [self checkPermissions:connection withCallback:^(NSError *error, id data) {
                            [self bar];
                        }];
                    }];
}

- (void) method3 {
    [TestClassRequest performMethod:TestClassRequestMethodPOST responseHandler:^(NSURLResponse *response, NSData *responseData, NSError *error) {
        [self checkPermissions:connection withCallback:^(NSError *error, id data) {
            [self bar];
        }];
    }];
}

@end