blob: a758d549c76a4b4e6e3a64e012db31a11f4e391d [file] [log] [blame]
phajdan.jr@chromium.orgdd31b052013-12-07 07:31:55 +09001// Copyright 2013 The Chromium Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
phajdan.jr@chromium.orgdd31b052013-12-07 07:31:55 +09005#include "base/bind.h"
6#include "base/test/launcher/unit_test_launcher.h"
7#include "base/test/test_suite.h"
8
phajdan.jr@chromium.orgdd31b052013-12-07 07:31:55 +09009int main(int argc, char** argv) {
jam5a983bb2015-12-11 11:23:27 +090010 base::TestSuite test_suite(argc, argv);
thestigb42e7e32015-12-22 07:07:13 +090011 return base::LaunchUnitTestsSerially(
jam5a983bb2015-12-11 11:23:27 +090012 argc, argv,
13 base::Bind(&base::TestSuite::Run, base::Unretained(&test_suite)));
phajdan.jr@chromium.orgdd31b052013-12-07 07:31:55 +090014}