XCTestExpectation.h 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. //
  2. // Generated by class-dump 3.5 (64 bit).
  3. //
  4. // class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2013 by Steve Nygard.
  5. //
  6. @class _XCTestExpectationImplementation;
  7. @interface XCTestExpectation : NSObject
  8. {
  9. id _internalImplementation;
  10. }
  11. @property BOOL hasBeenWaitedOn;
  12. @property id <XCTestExpectationDelegate> delegate;
  13. @property(readonly, copy) NSArray *fulfillCallStackReturnAddresses;
  14. @property(readonly) BOOL fulfilled;
  15. @property BOOL hasInverseBehavior;
  16. @property(getter=isInverted) BOOL inverted;
  17. @property(nonatomic) BOOL assertForOverFulfill;
  18. @property(nonatomic) unsigned long long expectedFulfillmentCount;
  19. @property(nonatomic) unsigned long long fulfillmentCount;
  20. @property(readonly) unsigned long long fulfillmentToken;
  21. @property(readonly) _XCTestExpectationImplementation *internalImplementation; // @synthesize internalImplementation=_internalImplementation;
  22. @property(copy) NSString *expectationDescription;
  23. @property(readonly, nonatomic) NSObject<OS_dispatch_queue> *delegateQueue;
  24. @property(readonly, nonatomic) NSObject<OS_dispatch_queue> *queue;
  25. + (id)expectationWithDescription:(id)arg1;
  26. - (void)cleanup;
  27. - (void)_queue_fulfillWithCallStackReturnAddresses:(id)arg1;
  28. - (void)fulfill;
  29. - (id)initWithDescription:(id)arg1;
  30. - (id)init;
  31. @end