XCTNSNotificationExpectation.h 839 B

123456789101112131415161718192021222324252627
  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. #import <XCTest/XCTestExpectation.h>
  7. @class NSNotificationCenter, NSString, _XCTNSNotificationExpectationImplementation;
  8. @interface XCTNSNotificationExpectation : XCTestExpectation
  9. {
  10. id _internal;
  11. }
  12. @property(retain) _XCTNSNotificationExpectationImplementation *internal; // @synthesize internal=_internal;
  13. @property(copy) CDUnknownBlockType handler;
  14. @property(readonly) NSNotificationCenter *notificationCenter;
  15. @property(readonly, copy) NSString *notificationName;
  16. @property(readonly) id observedObject;
  17. - (void)cleanup;
  18. - (void)fulfill;
  19. - (id)initWithName:(id)arg1;
  20. - (id)initWithName:(id)arg1 object:(id)arg2;
  21. - (id)initWithName:(id)arg1 object:(id)arg2 notificationCenter:(id)arg3;
  22. @end