XCTestConfiguration.h 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  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 NSSet, NSString, NSURL, NSUUID;
  7. @interface XCTestConfiguration : NSObject <NSSecureCoding>
  8. {
  9. NSURL *_testBundleURL;
  10. NSString *_testBundleRelativePath;
  11. NSString *_absolutePath;
  12. NSSet *_testsToSkip;
  13. NSSet *_testsToRun;
  14. BOOL _reportResultsToIDE;
  15. NSUUID *_sessionIdentifier;
  16. NSString *_pathToXcodeReportingSocket;
  17. BOOL _disablePerformanceMetrics;
  18. BOOL _treatMissingBaselinesAsFailures;
  19. NSURL *_baselineFileURL;
  20. NSString *_baselineFileRelativePath;
  21. NSString *_targetApplicationPath;
  22. NSString *_targetApplicationBundleID;
  23. NSString *_productModuleName;
  24. BOOL _reportActivities;
  25. BOOL _testsMustRunOnMainThread;
  26. BOOL _initializeForUITesting;
  27. NSArray *_targetApplicationArguments;
  28. NSDictionary *_targetApplicationEnvironment;
  29. NSDictionary *_aggregateStatisticsBeforeCrash;
  30. NSString *_automationFrameworkPath;
  31. BOOL _emitOSLogs;
  32. }
  33. @property BOOL emitOSLogs; // @synthesize emitOSLogs=_emitOSLogs;
  34. @property(copy) NSString *automationFrameworkPath; // @synthesize automationFrameworkPath=_automationFrameworkPath;
  35. @property(copy) NSDictionary *aggregateStatisticsBeforeCrash; // @synthesize aggregateStatisticsBeforeCrash=_aggregateStatisticsBeforeCrash;
  36. @property(copy) NSArray *targetApplicationArguments; // @synthesize targetApplicationArguments=_targetApplicationArguments;
  37. @property(copy) NSDictionary *targetApplicationEnvironment; // @synthesize targetApplicationEnvironment=_targetApplicationEnvironment;
  38. @property BOOL initializeForUITesting; // @synthesize initializeForUITesting=_initializeForUITesting;
  39. @property BOOL testsMustRunOnMainThread; // @synthesize testsMustRunOnMainThread=_testsMustRunOnMainThread;
  40. @property BOOL reportActivities; // @synthesize reportActivities=_reportActivities;
  41. @property(copy) NSString *productModuleName; // @synthesize productModuleName=_productModuleName;
  42. @property(copy) NSString *targetApplicationBundleID; // @synthesize targetApplicationBundleID=_targetApplicationBundleID;
  43. @property(copy) NSString *targetApplicationPath; // @synthesize targetApplicationPath=_targetApplicationPath;
  44. @property BOOL treatMissingBaselinesAsFailures; // @synthesize treatMissingBaselinesAsFailures=_treatMissingBaselinesAsFailures;
  45. @property BOOL disablePerformanceMetrics; // @synthesize disablePerformanceMetrics=_disablePerformanceMetrics;
  46. @property BOOL reportResultsToIDE; // @synthesize reportResultsToIDE=_reportResultsToIDE;
  47. @property(copy, nonatomic) NSURL *baselineFileURL; // @synthesize baselineFileURL=_baselineFileURL;
  48. @property(copy) NSString *baselineFileRelativePath; // @synthesize baselineFileRelativePath=_baselineFileRelativePath;
  49. @property(copy) NSString *pathToXcodeReportingSocket; // @synthesize pathToXcodeReportingSocket=_pathToXcodeReportingSocket;
  50. @property(copy) NSUUID *sessionIdentifier; // @synthesize sessionIdentifier=_sessionIdentifier;
  51. @property(copy) NSSet *testsToSkip; // @synthesize testsToSkip=_testsToSkip;
  52. @property(copy) NSSet *testsToRun; // @synthesize testsToRun=_testsToRun;
  53. @property(copy, nonatomic) NSURL *testBundleURL; // @synthesize testBundleURL=_testBundleURL;
  54. @property(copy) NSString *testBundleRelativePath; // @synthesize testBundleRelativePath=_testBundleRelativePath;
  55. @property(copy) NSString *absolutePath; // @synthesize absolutePath=_absolutePath;
  56. + (id)configurationWithContentsOfFile:(id)arg1;
  57. + (id)activeTestConfiguration;
  58. + (void)setActiveTestConfiguration:(id)arg1;
  59. - (BOOL)writeToFile:(id)arg1;
  60. - (id)init;
  61. @end