metatext/Development Assets/MockKeychainService.swift
Justin Mazzocchi 330d796442
Refactoring
2020-08-08 18:29:05 -07:00

21 lines
435 B
Swift

// 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]
}
}