mockStruct

Version of mockStruct that accepts a compile-time mapping of function name to return values. Each template parameter must be a value of type ReturnValues

  1. auto mockStruct(T returns)
  2. auto mockStruct()
    mockStruct
    (
    T...
    )
    ()
    if (
    T.length > 0 &&
    allSatisfy!(isReturnValue, T)
    )

Meta