forked from chromium/chromium
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy paththread_pool_unittest.cc
44 lines (36 loc) · 1.24 KB
/
thread_pool_unittest.cc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
// Copyright 2020 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "base/task/thread_pool.h"
#include "base/bind.h"
#include "base/location.h"
#include "base/run_loop.h"
#include "base/test/bind.h"
#include "base/test/task_environment.h"
#include "testing/gtest/include/gtest/gtest.h"
namespace base {
TEST(ThreadPool, PostTaskAndReplyWithResultThreeArgs) {
base::test::TaskEnvironment env;
base::RunLoop run_loop;
base::ThreadPool::PostTaskAndReplyWithResult(
FROM_HERE, base::BindOnce([]() { return 3; }),
base::OnceCallback<void(int)>(
base::BindLambdaForTesting([&run_loop](int x) {
EXPECT_EQ(x, 3);
run_loop.Quit();
})));
run_loop.Run();
}
TEST(ThreadPool, PostTaskAndReplyWithResultFourArgs) {
base::test::TaskEnvironment env;
base::RunLoop run_loop;
base::ThreadPool::PostTaskAndReplyWithResult(
FROM_HERE, /*traits=*/{}, base::BindOnce([]() { return 3; }),
base::OnceCallback<void(int)>(
base::BindLambdaForTesting([&run_loop](int x) {
EXPECT_EQ(x, 3);
run_loop.Quit();
})));
run_loop.Run();
}
} // namespace base