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
293
/// must be fulfilled in the given order. May return early based on fulfillment of the waited on expectations. The waiter
257
294
/// is discarded when the wait completes.
@@ -268,10 +305,32 @@ open class XCTWaiter {
268
305
/// expectations are not fulfilled before the given timeout. Default is the line
269
306
/// number of the call to this method in the calling file. It is rare to
270
307
/// 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
314
+
/// must be fulfilled in the given order. May return early based on fulfillment of the waited on expectations. The waiter
315
+
/// is discarded when the wait completes.
316
+
///
317
+
/// - Parameter expectations: The expectations to wait on.
318
+
/// - Parameter timeout: The maximum total time duration to wait on all expectations.
319
+
/// - Parameter enforceOrder: Specifies whether the expectations must be fulfilled in the order
320
+
/// they are specified in the `expectations` Array. Default is false.
321
+
/// - Parameter file: The file name to use in the error message if
322
+
/// expectations are not fulfilled before the given timeout. Default is the file
323
+
/// containing the call to this method. It is rare to provide this
324
+
/// parameter when calling this method.
325
+
/// - Parameter line: The line number to use in the error message if the
326
+
/// expectations are not fulfilled before the given timeout. Default is the line
327
+
/// number of the call to this method in the calling file. It is rare to
328
+
/// provide this parameter when calling this method.
0 commit comments