Avi Drissman | 468e51b6 | 2022-09-13 20:47:01 | [diff] [blame] | 1 | // Copyright 2013 The Chromium Authors |
[email protected] | a22998a | 2013-11-10 05:00:50 | [diff] [blame] | 2 | // Use of this source code is governed by a BSD-style license that can be |
3 | // found in the LICENSE file. | ||||
4 | |||||
Avi Drissman | 93a273dd | 2023-01-11 00:38:27 | [diff] [blame^] | 5 | #include "base/functional/bind.h" |
[email protected] | a22998a | 2013-11-10 05:00:50 | [diff] [blame] | 6 | #include "base/test/launcher/unit_test_launcher.h" |
7 | #include "base/test/test_suite.h" | ||||
[email protected] | a22998a | 2013-11-10 05:00:50 | [diff] [blame] | 8 | |
9 | int main(int argc, char** argv) { | ||||
10 | base::TestSuite test_suite(argc, argv); | ||||
11 | |||||
[email protected] | a22998a | 2013-11-10 05:00:50 | [diff] [blame] | 12 | return base::LaunchUnitTests( |
tzik | 91bae81 | 2018-03-13 09:13:48 | [diff] [blame] | 13 | argc, argv, |
14 | base::BindOnce(&base::TestSuite::Run, base::Unretained(&test_suite))); | ||||
[email protected] | a22998a | 2013-11-10 05:00:50 | [diff] [blame] | 15 | } |