summaryrefslogtreecommitdiff
path: root/tests/projects/objc/iosapp_with_framework/src/app
diff options
context:
space:
mode:
authorruki <[email protected]>2022-02-16 00:43:20 +0800
committerruki <[email protected]>2022-02-16 00:43:20 +0800
commitfe5673d0291653137c3ecc53c2abba5c162a6779 (patch)
tree6b853d9a59fd457c7b20dd11b515b84652f2793c /tests/projects/objc/iosapp_with_framework/src/app
parent8d561955f8bee7dc200b047c998c0e973f342192 (diff)
improve tests for iosapp
Diffstat (limited to 'tests/projects/objc/iosapp_with_framework/src/app')
-rw-r--r--tests/projects/objc/iosapp_with_framework/src/app/AppDelegate.m5
1 files changed, 3 insertions, 2 deletions
diff --git a/tests/projects/objc/iosapp_with_framework/src/app/AppDelegate.m b/tests/projects/objc/iosapp_with_framework/src/app/AppDelegate.m
index cdcf08c1e..1e849ce09 100644
--- a/tests/projects/objc/iosapp_with_framework/src/app/AppDelegate.m
+++ b/tests/projects/objc/iosapp_with_framework/src/app/AppDelegate.m
@@ -18,8 +18,9 @@
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
// Override point for customization after application launch.
- int c = add(1, 2);
- NSLog(@"result: %d", c);
+ NSLog(@"add(1, 2): %d", add(1, 2));
+ Test* t = [[Test alloc] init];
+ [t hello];
return YES;
}