OLD | NEW |
---|---|
(Empty) | |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | |
2 // Use of this source code is governed by a BSD-style license that can be | |
3 // found in the LICENSE file. | |
4 | |
5 #include "base/test/test_listener_ios.h" | |
6 | |
7 #import <Foundation/Foundation.h> | |
8 | |
9 #include "base/mac/scoped_nsautorelease_pool.h" | |
10 #include "testing/gtest/include/gtest/gtest.h" | |
11 | |
12 // The iOS watchdog timer will kill an app that doesn't spin the main event | |
13 // loop often enough. This uses a Gtest TestEventListener to spin the current | |
14 // loop after each test finishes. However, if any individual test takes too | |
15 // long, it is still possible that the app will get killed. | |
16 | |
17 namespace { | |
18 | |
19 class IOSRunLoopListener : public testing::EmptyTestEventListener { | |
20 public: | |
21 virtual void OnTestEnd(const testing::TestInfo& test_info); | |
22 }; | |
23 | |
24 void IOSRunLoopListener::OnTestEnd(const testing::TestInfo& test_info) { | |
25 base::mac::ScopedNSAutoreleasePool scoped_pool; | |
26 | |
27 // At the end of the test, spin the default loop for a moment. | |
28 NSRunLoop* current_loop = [NSRunLoop currentRunLoop]; | |
stuartmorgan
2012/07/12 10:59:23
Just inline this below.
leng
2012/07/12 11:17:31
Done.
| |
29 NSDate* stop_date = [NSDate dateWithTimeIntervalSinceNow:0.001]; | |
30 [current_loop runUntilDate:stop_date]; | |
31 } | |
32 | |
33 } // namespace | |
34 | |
35 | |
36 namespace base { | |
37 namespace test_listener_ios { | |
38 | |
39 void RegisterTestEndListener() { | |
40 testing::TestEventListeners& listeners = | |
41 testing::UnitTest::GetInstance()->listeners(); | |
42 listeners.Append(new IOSRunLoopListener); | |
43 } | |
44 | |
45 } // namespace test_listener_ios | |
46 } // namespace base | |
OLD | NEW |