Skip to content
Snippets Groups Projects
Commit 99538c24 authored by Dariusz Rybicki's avatar Dariusz Rybicki
Browse files

Add SetDashboardURL function wrapper

parent d8f73a63
No related branches found
No related tags found
2 merge requests!102Release 1.0.0,!78Update Bindings
import Bindings
import XCTestDynamicOverlay
public struct SetDashboardURL {
public var run: (String) -> Void
public func callAsFunction(baseURL: String) {
run(baseURL)
}
}
extension SetDashboardURL {
public static let live = SetDashboardURL { baseURL in
BindingsSetDashboardURL(baseURL)
}
}
extension SetDashboardURL {
public static let unimplemented = SetDashboardURL(
run: XCTUnimplemented("\(Self.self)")
)
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment