Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想知道是否有一种方法可以自动测试launchOptions应用程序首次启动时的不同配置?我熟悉 XCTest、KIF 和 KIWI,但我不确定是否可以实施此类测试?
launchOptions
我认为您始终可以将应用程序置于第一次运行时的状态。我的意思是在 AppDelegate 中
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
您始终可以在每次测试之前或所有测试之前对 launchOptions 做出反应以设置应用程序状态 - 这取决于您的实际测试。