XCTKVOExpectation.h 873 B

12345678910111213141516171819202122232425262728
  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 NSString, _XCKVOExpectationImplementation;
  8. @interface XCTKVOExpectation : XCTestExpectation
  9. {
  10. id _internal;
  11. }
  12. @property(retain) _XCKVOExpectationImplementation *internal; // @synthesize internal=_internal;
  13. @property(copy) CDUnknownBlockType handler;
  14. @property(readonly) unsigned long long options;
  15. @property(readonly) id expectedValue;
  16. @property(readonly) id observedObject;
  17. @property(readonly, copy) NSString *keyPath;
  18. - (void)cleanup;
  19. - (void)fulfill;
  20. - (id)initWithKeyPath:(id)arg1 object:(id)arg2;
  21. - (id)initWithKeyPath:(id)arg1 object:(id)arg2 expectedValue:(id)arg3;
  22. - (id)initWithKeyPath:(id)arg1 object:(id)arg2 expectedValue:(id)arg3 options:(unsigned long long)arg4;
  23. @end