mirror of
https://github.com/bitwarden/ios.git
synced 2026-06-19 22:34:18 -05:00
20 lines
372 B
Swift
20 lines
372 B
Swift
import XCTest
|
|
|
|
@testable import AuthenticatorShared
|
|
|
|
// MARK: - MockFileSelectionDelegate
|
|
|
|
class MockFileSelectionDelegate: FileSelectionDelegate {
|
|
// MARK: Properties
|
|
|
|
var fileName: String?
|
|
var data: Data?
|
|
|
|
// MARK: Methods
|
|
|
|
func fileSelectionCompleted(fileName: String, data: Data) {
|
|
self.fileName = fileName
|
|
self.data = data
|
|
}
|
|
}
|