blob: 93984a1d7d5d7fb39645a053132dc27f1ce65741 [file] [log] [blame]
Avi Drissman468e51b62022-09-13 20:47:011// Copyright 2013 The Chromium Authors
[email protected]a22998a2013-11-10 05:00:502// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
Avi Drissman93a273dd2023-01-11 00:38:275#include "base/functional/bind.h"
[email protected]a22998a2013-11-10 05:00:506#include "base/test/launcher/unit_test_launcher.h"
7#include "base/test/test_suite.h"
[email protected]a22998a2013-11-10 05:00:508
9int main(int argc, char** argv) {
10 base::TestSuite test_suite(argc, argv);
11
[email protected]a22998a2013-11-10 05:00:5012 return base::LaunchUnitTests(
tzik91bae812018-03-13 09:13:4813 argc, argv,
14 base::BindOnce(&base::TestSuite::Run, base::Unretained(&test_suite)));
[email protected]a22998a2013-11-10 05:00:5015}