Home | History | Annotate | Download | only in message_loop

Lines Matching refs:TEST

17 namespace test {
47 } // namespace test
51 TEST(MessageLoopTestType##id, PostTask) { \
52 base::test::RunTest_PostTask(factory); \
54 TEST(MessageLoopTestType##id, PostDelayedTask_Basic) { \
55 base::test::RunTest_PostDelayedTask_Basic(factory); \
57 TEST(MessageLoopTestType##id, PostDelayedTask_InDelayOrder) { \
58 base::test::RunTest_PostDelayedTask_InDelayOrder(factory); \
60 TEST(MessageLoopTestType##id, PostDelayedTask_InPostOrder) { \
61 base::test::RunTest_PostDelayedTask_InPostOrder(factory); \
63 TEST(MessageLoopTestType##id, PostDelayedTask_InPostOrder_2) { \
64 base::test::RunTest_PostDelayedTask_InPostOrder_2(factory); \
66 TEST(MessageLoopTestType##id, PostDelayedTask_InPostOrder_3) { \
67 base::test::RunTest_PostDelayedTask_InPostOrder_3(factory); \
69 TEST(MessageLoopTestType##id, PostDelayedTask_SharedTimer) { \
70 base::test::RunTest_PostDelayedTask_SharedTimer(factory); \
75 TEST(MessageLoopTestType##id, DISABLED_EnsureDeletion) { \
76 base::test::RunTest_EnsureDeletion(factory); \
81 TEST(MessageLoopTestType##id, DISABLED_EnsureDeletion_Chain) { \
82 base::test::RunTest_EnsureDeletion_Chain(factory); \
84 TEST(MessageLoopTestType##id, Nesting) { \
85 base::test::RunTest_Nesting(factory); \
87 TEST(MessageLoopTestType##id, RecursiveDenial1) { \
88 base::test::RunTest_RecursiveDenial1(factory); \
90 TEST(MessageLoopTestType##id, RecursiveDenial3) { \
91 base::test::RunTest_RecursiveDenial3(factory); \
93 TEST(MessageLoopTestType##id, RecursiveSupport1) { \
94 base::test::RunTest_RecursiveSupport1(factory); \
96 TEST(MessageLoopTestType##id, NonNestableWithNoNesting) { \
97 base::test::RunTest_NonNestableWithNoNesting(factory); \
99 TEST(MessageLoopTestType##id, NonNestableInNestedLoop) { \
100 base::test::RunTest_NonNestableInNestedLoop(factory, false); \
102 TEST(MessageLoopTestType##id, NonNestableDelayedInNestedLoop) { \
103 base::test::RunTest_NonNestableInNestedLoop(factory, true); \
105 TEST(MessageLoopTestType##id, QuitNow) { \
106 base::test::RunTest_QuitNow(factory); \
108 TEST(MessageLoopTestType##id, RunLoopQuitTop) { \
109 base::test::RunTest_RunLoopQuitTop(factory); \
111 TEST(MessageLoopTestType##id, RunLoopQuitNested) { \
112 base::test::RunTest_RunLoopQuitNested(factory); \
114 TEST(MessageLoopTestType##id, RunLoopQuitBogus) { \
115 base::test::RunTest_RunLoopQuitBogus(factory); \
117 TEST(MessageLoopTestType##id, RunLoopQuitDeep) { \
118 base::test::RunTest_RunLoopQuitDeep(factory); \
120 TEST(MessageLoopTestType##id, RunLoopQuitOrderBefore) { \
121 base::test::RunTest_RunLoopQuitOrderBefore(factory); \
123 TEST(MessageLoopTestType##id, RunLoopQuitOrderDuring) { \
124 base::test::RunTest_RunLoopQuitOrderDuring(factory); \
126 TEST(MessageLoopTestType##id, RunLoopQuitOrderAfter) { \
127 base::test::RunTest_RunLoopQuitOrderAfter(factory); \
129 TEST(MessageLoopTestType##id, RecursivePosts) { \
130 base::test::RunTest_RecursivePosts(factory); \