17 lines
424 B
Swift
17 lines
424 B
Swift
//
|
|
// LocalAuthenticationTestKey.swift
|
|
// Zashi
|
|
//
|
|
// Created by Lukáš Korba on 12.11.2022.
|
|
//
|
|
|
|
import ComposableArchitecture
|
|
import XCTestDynamicOverlay
|
|
|
|
extension LocalAuthenticationClient: TestDependencyKey {
|
|
public static let testValue = Self(
|
|
authenticate: unimplemented("\(Self.self).authenticate", placeholder: false),
|
|
method: unimplemented("\(Self.self).method", placeholder: .none)
|
|
)
|
|
}
|