import AuthenticatorShared import UIKit @testable import Authenticator /// A replacement for `AppDelegate` that allows for checking that certain app delegate methods get called at the /// appropriate times during unit tests. /// class TestingAppDelegate: NSObject, UIApplicationDelegate, AppDelegateType { var appProcessor: AppProcessor? var isTesting = false }