ios/Authenticator/Application/TestHelpers/Support/TestingAppDelegate.swift
2024-03-28 14:42:40 -05:00

19 lines
507 B
Swift

import UIKit
@testable import Authenticator
class TestingAppDelegate: NSObject, UIApplicationDelegate {
var window: UIWindow?
func application(
_ application: UIApplication,
didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?
) -> Bool {
let window = UIWindow(frame: UIScreen.main.bounds)
window.rootViewController = UIViewController()
window.makeKeyAndVisible()
self.window = window
return true
}
}