You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/// Convenience API to create an XCTWaiter which then waits on an array of expectations for up to the specified timeout, and optionally specify whether they
256
294
/// must be fulfilled in the given order. May return early based on fulfillment of the waited on expectations. The waiter
257
295
/// is discarded when the wait completes.
@@ -268,10 +306,32 @@ open class XCTWaiter {
268
306
/// expectations are not fulfilled before the given timeout. Default is the line
269
307
/// number of the call to this method in the calling file. It is rare to
270
308
/// provide this parameter when calling this method.
/// Convenience API to create an XCTWaiter which then waits on an array of expectations for up to the specified timeout, and optionally specify whether they
315
+
/// must be fulfilled in the given order. May return early based on fulfillment of the waited on expectations. The waiter
316
+
/// is discarded when the wait completes.
317
+
///
318
+
/// - Parameter expectations: The expectations to wait on.
319
+
/// - Parameter timeout: The maximum total time duration to wait on all expectations.
320
+
/// - Parameter enforceOrder: Specifies whether the expectations must be fulfilled in the order
321
+
/// they are specified in the `expectations` Array. Default is false.
322
+
/// - Parameter file: The file name to use in the error message if
323
+
/// expectations are not fulfilled before the given timeout. Default is the file
324
+
/// containing the call to this method. It is rare to provide this
325
+
/// parameter when calling this method.
326
+
/// - Parameter line: The line number to use in the error message if the
327
+
/// expectations are not fulfilled before the given timeout. Default is the line
328
+
/// number of the call to this method in the calling file. It is rare to
329
+
/// provide this parameter when calling this method.
0 commit comments