1
0
mirror of https://github.com/metabolist/metatext synced 2024-12-22 07:54:56 +01:00
metatext-app-ios-iphone-ipad/Development Assets/MockKeychainService.swift

22 lines
435 B
Swift
Raw Normal View History

2020-08-09 03:29:05 +02:00
// Copyright © 2020 Metabolist. All rights reserved.
import Foundation
class MockKeychainService {
private var items = [String: Data]()
}
extension MockKeychainService: KeychainServiceType {
func set(data: Data, forKey key: String) throws {
items[key] = data
}
func deleteData(key: String) throws {
items[key] = nil
}
func getData(key: String) throws -> Data? {
items[key]
}
}