_XCTestExpectationImplementation.h 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  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 NSString, XCTestCase;
  7. @interface _XCTestExpectationImplementation : NSObject
  8. {
  9. BOOL _fulfilled;
  10. NSString *_expectationDescription;
  11. id <XCTestExpectationDelegate> _delegate;
  12. BOOL _hasBeenWaitedOn;
  13. unsigned long long _expectedFulfillmentCount;
  14. unsigned long long _numberOfFulfillments;
  15. unsigned long long _fulfillmentToken;
  16. NSArray *_fulfillCallStackReturnAddresses;
  17. BOOL _inverted;
  18. BOOL _assertForOverFulfill;
  19. NSObject<OS_dispatch_queue> *_queue;
  20. NSObject<OS_dispatch_queue> *_delegateQueue;
  21. }
  22. @property(readonly, nonatomic) NSObject<OS_dispatch_queue> *delegateQueue; // @synthesize delegateQueue=_delegateQueue;
  23. @property(readonly, nonatomic) NSObject<OS_dispatch_queue> *queue; // @synthesize queue=_queue;
  24. @property(nonatomic) unsigned long long numberOfFulfillments; // @synthesize numberOfFulfillments=_numberOfFulfillments;
  25. @property(nonatomic) unsigned long long expectedFulfillmentCount; // @synthesize expectedFulfillmentCount=_expectedFulfillmentCount;
  26. @property(copy) NSArray *fulfillCallStackReturnAddresses; // @synthesize fulfillCallStackReturnAddresses=_fulfillCallStackReturnAddresses;
  27. @property unsigned long long fulfillmentToken; // @synthesize fulfillmentToken=_fulfillmentToken;
  28. @property BOOL assertForOverFulfill; // @synthesize assertForOverFulfill=_assertForOverFulfill;
  29. @property BOOL inverted; // @synthesize inverted=_inverted;
  30. @property BOOL hasBeenWaitedOn; // @synthesize hasBeenWaitedOn=_hasBeenWaitedOn;
  31. @property(retain) id <XCTestExpectationDelegate> delegate; // @synthesize delegate=_delegate;
  32. @property(copy) NSString *expectationDescription; // @synthesize expectationDescription=_expectationDescription;
  33. @property BOOL fulfilled; // @synthesize fulfilled=_fulfilled;
  34. - (id)init;
  35. @end