// // QRImageDetectorTestKey.swift // Zashi // // Created by Lukáš Korba on 2024-04-18. // import ComposableArchitecture import XCTestDynamicOverlay extension QRImageDetectorClient: TestDependencyKey { public static let testValue = Self( check: unimplemented("\(Self.self).check", placeholder: nil) ) } extension QRImageDetectorClient { public static let noOp = Self( check: { _ in nil } ) }