1 // 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.
5 #include "base/basictypes.h"
7 #include "base/compiler_specific.h"
8 #include "base/memory/scoped_ptr.h"
9 #include "base/test/launcher/unit_test_launcher.h"
10 #include "base/test/test_suite.h"
12 int main(int argc
, char** argv
) {
13 base::TestSuite
test_suite(argc
, argv
);
15 return base::LaunchUnitTests(
16 argc
, argv
, base::Bind(&base::TestSuite::Run
,
17 base::Unretained(&test_suite
)));