Skip to content
Snippets Groups Projects
Select Git revision
  • development
  • main default protected
  • integration
  • v1.1.5
  • v1.1.4
  • v1.1.3
  • v1.1.2
  • v1.1.1
  • v1.1.0
  • v1.0.0
10 results

ConnectionGetId.swift

Blame
  • GetCmixParams.swift NaN GiB
    import Bindings
    import XCTestDynamicOverlay
    
    public struct GetCmixParams {
      public var run: () -> Data
    
      public func callAsFunction() -> Data {
        run()
      }
    }
    
    extension GetCmixParams {
      public static let liveDefault = GetCmixParams {
        guard let data = BindingsGetDefaultCMixParams() else {
          fatalError("BindingsGetDefaultCMixParams returned `nil`")
        }
        return data
      }
    }
    
    extension GetCmixParams {
      public static let unimplemented = GetCmixParams(
        run: XCTUnimplemented("\(Self.self)")
      )
    }