XCTestMisuseObserver.h 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637
  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. #import "XCTestObservation.h"
  8. @class NSMutableArray, NSString, XCTestCase, XCTestSuite;
  9. @interface XCTestMisuseObserver : NSObject <XCTestObservation>
  10. {
  11. CDUnknownBlockType _warningLogHandler;
  12. NSMutableArray *_testSuiteStack;
  13. XCTestCase *_currentTestCase;
  14. }
  15. @property(retain) XCTestCase *currentTestCase; // @synthesize currentTestCase=_currentTestCase;
  16. @property(readonly) NSMutableArray *testSuiteStack; // @synthesize testSuiteStack=_testSuiteStack;
  17. @property(readonly, copy) CDUnknownBlockType warningLogHandler; // @synthesize warningLogHandler=_warningLogHandler;
  18. @property(readonly) XCTestSuite *currentTestSuite;
  19. - (void)testCaseDidFinish:(id)arg1;
  20. - (void)testCase:(id)arg1 didFailWithDescription:(id)arg2 inFile:(id)arg3 atLine:(unsigned long long)arg4;
  21. - (void)testCaseWillStart:(id)arg1;
  22. - (void)testSuiteDidFinish:(id)arg1;
  23. - (void)testSuiteWillStart:(id)arg1;
  24. - (BOOL)testSuiteStackContainsTestSuite:(id)arg1;
  25. - (void)removeTestSuiteFromStack:(id)arg1;
  26. - (void)popCurrentTestSuite;
  27. - (void)pushTestSuite:(id)arg1;
  28. - (void)emitWarningLog:(id)arg1;
  29. - (id)initWithWarningLogHandler:(CDUnknownBlockType)arg1;
  30. @end