Skip to content
Snippets Groups Projects

Update Bindings

Merged Dariusz Rybicki requested to merge dev/update-bindings into development
2 files
+ 25
0
Compare changes
  • Side-by-side
  • Inline
Files
2
import Bindings
import XCTestDynamicOverlay
public struct E2EGetUdAddressFromNdf {
public var run: () -> String
public func callAsFunction() -> String {
run()
}
}
extension E2EGetUdAddressFromNdf {
public static func live(_ bindingsE2E: BindingsE2e) -> E2EGetUdAddressFromNdf {
E2EGetUdAddressFromNdf(run: bindingsE2E.getUdAddressFromNdf)
}
}
extension E2EGetUdAddressFromNdf {
public static let unimplemented = E2EGetUdAddressFromNdf(
run: XCTUnimplemented("\(Self.self)")
)
}
Loading