mirror of
https://github.com/bitwarden/ios.git
synced 2025-12-11 13:54:06 -06:00
13 lines
372 B
Swift
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
|
|
}
|