GcovTestObserver.m 465 B

12345678910111213141516171819202122
  1. //
  2. // GcovTestObserver.m
  3. // ClassyTests
  4. //
  5. // Created by Jonas Budelmann on 19/11/13.
  6. // Copyright (c) 2013 Jonas Budelmann. All rights reserved.
  7. //
  8. #import <XCTest/XCTestObserver.h>
  9. @interface GcovTestObserver : XCTestObserver
  10. @end
  11. @implementation GcovTestObserver
  12. - (void)stopObserving {
  13. [super stopObserving];
  14. UIApplication* application = [UIApplication sharedApplication];
  15. [application.delegate applicationWillTerminate:application];
  16. }
  17. @end