ios/Authenticator/Application/TestHelpers/Support/TestingAppDelegate.swift
2024-04-02 15:56:32 -05:00

13 lines
372 B
Swift

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
}