_XCInternalTestRun.h 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  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 NSDate, XCTest;
  7. @interface _XCInternalTestRun : NSObject
  8. {
  9. XCTest *_test;
  10. double _startTimeInterval;
  11. double _stopTimeInterval;
  12. unsigned long long _executionCount;
  13. unsigned long long _failureCount;
  14. unsigned long long _unexpectedExceptionCount;
  15. BOOL _hasStarted;
  16. BOOL _hasStopped;
  17. unsigned long long _executionCountBeforeCrash;
  18. unsigned long long _failureCountBeforeCrash;
  19. unsigned long long _unexpectedExceptionCountBeforeCrash;
  20. }
  21. @property unsigned long long unexpectedExceptionCountBeforeCrash; // @synthesize unexpectedExceptionCountBeforeCrash=_unexpectedExceptionCountBeforeCrash;
  22. @property unsigned long long failureCountBeforeCrash; // @synthesize failureCountBeforeCrash=_failureCountBeforeCrash;
  23. @property unsigned long long executionCountBeforeCrash; // @synthesize executionCountBeforeCrash=_executionCountBeforeCrash;
  24. @property(readonly) BOOL hasStopped; // @synthesize hasStopped=_hasStopped;
  25. @property(readonly) XCTest *test; // @synthesize test=_test;
  26. @property(readonly) unsigned long long testCaseCount;
  27. @property(readonly) unsigned long long unexpectedExceptionCount;
  28. @property(readonly) unsigned long long failureCount;
  29. @property(readonly) unsigned long long executionCount;
  30. @property(readonly, copy) NSDate *stopDate;
  31. @property(readonly, copy) NSDate *startDate;
  32. @property(readonly) double testDuration;
  33. @property(readonly) double totalDuration;
  34. - (id)initWithTest:(id)arg1;
  35. - (void)stop;
  36. - (void)start;
  37. - (void)recordFailureWithDescription:(id)arg1 inFile:(id)arg2 atLine:(unsigned long long)arg3 expected:(BOOL)arg4;
  38. @end