| * Copyright (c) 2020 The WebRTC project authors. All Rights Reserved. |
| * Use of this source code is governed by a BSD-style license |
| * that can be found in the LICENSE file in the root of the source |
| * tree. An additional intellectual property rights grant can be found |
| * in the file PATENTS. All contributing project authors may |
| * be found in the AUTHORS file in the root of the source tree. |
| #include "test/run_loop.h" |
| #include "api/task_queue/task_queue_base.h" |
| #include "api/units/time_delta.h" |
| TEST(RunLoopTest, TaskQueueOnThread) { |
| EXPECT_EQ(TaskQueueBase::Current(), loop.task_queue()); |
| EXPECT_TRUE(loop.task_queue()->IsCurrent()); |
| TEST(RunLoopTest, Flush) { |
| loop.PostTask([&counter]() { ++counter; }); |
| TEST(RunLoopTest, Delayed) { |
| loop.task_queue()->PostDelayedTask( |
| TEST(RunLoopTest, PostAndQuit) { |
| loop.PostTask([&ran, &loop]() { |