XCTTestRunSession.h 723 B

12345678910111213141516171819202122232425
  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 "NSObject.h"
  7. @class XCTestConfiguration;
  8. @interface XCTTestRunSession : NSObject
  9. {
  10. XCTestConfiguration *_testConfiguration;
  11. id <XCTTestRunSessionDelegate> _delegate;
  12. }
  13. @property id <XCTTestRunSessionDelegate> delegate; // @synthesize delegate=_delegate;
  14. @property(retain) XCTestConfiguration *testConfiguration; // @synthesize testConfiguration=_testConfiguration;
  15. - (BOOL)runTestsAndReturnError:(id *)arg1;
  16. - (BOOL)_preTestingInitialization;
  17. - (void)resumeAppSleep:(id)arg1;
  18. - (id)suspendAppSleep;
  19. - (id)initWithTestConfiguration:(id)arg1 delegate:(id)arg2;
  20. @end