XCTestContext.h 855 B

1234567891011121314151617181920212223242526
  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 NSArray, XCTestContextScope;
  7. @interface XCTestContext : NSObject
  8. {
  9. BOOL _didHandleUIInterruption;
  10. XCTestContextScope *_currentScope;
  11. }
  12. @property BOOL didHandleUIInterruption; // @synthesize didHandleUIInterruption=_didHandleUIInterruption;
  13. @property(retain, nonatomic) XCTestContextScope *currentScope; // @synthesize currentScope=_currentScope;
  14. @property(readonly, copy) NSArray *handlers;
  15. + (CDUnknownBlockType)defaultAsynchronousUIElementHandler;
  16. - (BOOL)handleAsynchronousUIElement:(id)arg1;
  17. - (void)removeUIInterruptionMonitor:(id)arg1;
  18. - (id)addUIInterruptionMonitorWithDescription:(id)arg1 handler:(CDUnknownBlockType)arg2;
  19. - (void)performInScope:(CDUnknownBlockType)arg1;
  20. - (id)init;
  21. @end