OLD | NEW |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef BASE_MESSAGE_LOOP_MESSAGE_LOOP_TEST_H_ | 5 #ifndef BASE_MESSAGE_LOOP_MESSAGE_LOOP_TEST_H_ |
6 #define BASE_MESSAGE_LOOP_MESSAGE_LOOP_TEST_H_ | 6 #define BASE_MESSAGE_LOOP_MESSAGE_LOOP_TEST_H_ |
7 | 7 |
8 #include "base/message_loop/message_loop.h" | 8 #include "base/message_loop/message_loop.h" |
9 #include "testing/gtest/include/gtest/gtest.h" | 9 #include "testing/gtest/include/gtest/gtest.h" |
10 | 10 |
(...skipping 10 matching lines...) Expand all Loading... |
21 void RunTest_PostTask(MessagePumpFactory factory); | 21 void RunTest_PostTask(MessagePumpFactory factory); |
22 void RunTest_PostDelayedTask_Basic(MessagePumpFactory factory); | 22 void RunTest_PostDelayedTask_Basic(MessagePumpFactory factory); |
23 void RunTest_PostDelayedTask_InDelayOrder(MessagePumpFactory factory); | 23 void RunTest_PostDelayedTask_InDelayOrder(MessagePumpFactory factory); |
24 void RunTest_PostDelayedTask_InPostOrder(MessagePumpFactory factory); | 24 void RunTest_PostDelayedTask_InPostOrder(MessagePumpFactory factory); |
25 void RunTest_PostDelayedTask_InPostOrder_2(MessagePumpFactory factory); | 25 void RunTest_PostDelayedTask_InPostOrder_2(MessagePumpFactory factory); |
26 void RunTest_PostDelayedTask_InPostOrder_3(MessagePumpFactory factory); | 26 void RunTest_PostDelayedTask_InPostOrder_3(MessagePumpFactory factory); |
27 void RunTest_PostDelayedTask_SharedTimer(MessagePumpFactory factory); | 27 void RunTest_PostDelayedTask_SharedTimer(MessagePumpFactory factory); |
28 void RunTest_EnsureDeletion(MessagePumpFactory factory); | 28 void RunTest_EnsureDeletion(MessagePumpFactory factory); |
29 void RunTest_EnsureDeletion_Chain(MessagePumpFactory factory); | 29 void RunTest_EnsureDeletion_Chain(MessagePumpFactory factory); |
30 void RunTest_Nesting(MessagePumpFactory factory); | 30 void RunTest_Nesting(MessagePumpFactory factory); |
31 void RunTest_NestingObserver(MessagePumpFactory factory); | |
32 void RunTest_RecursiveDenial1(MessagePumpFactory factory); | 31 void RunTest_RecursiveDenial1(MessagePumpFactory factory); |
33 void RunTest_RecursiveDenial3(MessagePumpFactory factory); | 32 void RunTest_RecursiveDenial3(MessagePumpFactory factory); |
34 void RunTest_RecursiveSupport1(MessagePumpFactory factory); | 33 void RunTest_RecursiveSupport1(MessagePumpFactory factory); |
35 void RunTest_NonNestableWithNoNesting(MessagePumpFactory factory); | 34 void RunTest_NonNestableWithNoNesting(MessagePumpFactory factory); |
36 void RunTest_NonNestableInNestedLoop(MessagePumpFactory factory); | 35 void RunTest_NonNestableInNestedLoop(MessagePumpFactory factory); |
37 void RunTest_QuitNow(MessagePumpFactory factory); | 36 void RunTest_QuitNow(MessagePumpFactory factory); |
38 void RunTest_RunLoopQuitTop(MessagePumpFactory factory); | 37 void RunTest_RunLoopQuitTop(MessagePumpFactory factory); |
39 void RunTest_RunLoopQuitNested(MessagePumpFactory factory); | 38 void RunTest_RunLoopQuitNested(MessagePumpFactory factory); |
40 void RunTest_RunLoopQuitBogus(MessagePumpFactory factory); | 39 void RunTest_RunLoopQuitBogus(MessagePumpFactory factory); |
41 void RunTest_RunLoopQuitDeep(MessagePumpFactory factory); | 40 void RunTest_RunLoopQuitDeep(MessagePumpFactory factory); |
(...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
121 base::test::RunTest_RunLoopQuitOrderDuring(factory); \ | 120 base::test::RunTest_RunLoopQuitOrderDuring(factory); \ |
122 } \ | 121 } \ |
123 TEST(MessageLoopTestType##id, RunLoopQuitOrderAfter) { \ | 122 TEST(MessageLoopTestType##id, RunLoopQuitOrderAfter) { \ |
124 base::test::RunTest_RunLoopQuitOrderAfter(factory); \ | 123 base::test::RunTest_RunLoopQuitOrderAfter(factory); \ |
125 } \ | 124 } \ |
126 TEST(MessageLoopTestType##id, RecursivePosts) { \ | 125 TEST(MessageLoopTestType##id, RecursivePosts) { \ |
127 base::test::RunTest_RecursivePosts(factory); \ | 126 base::test::RunTest_RecursivePosts(factory); \ |
128 } \ | 127 } \ |
129 | 128 |
130 #endif // BASE_MESSAGE_LOOP_MESSAGE_LOOP_TEST_H_ | 129 #endif // BASE_MESSAGE_LOOP_MESSAGE_LOOP_TEST_H_ |
OLD | NEW |