Home | History | Annotate | Download | only in test
      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.
      4 
      5 #include "base/basictypes.h"
      6 #include "base/bind.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"
     11 
     12 int main(int argc, char** argv) {
     13   base::TestSuite test_suite(argc, argv);
     14 
     15   return base::LaunchUnitTests(
     16       argc, argv, base::Bind(&base::TestSuite::Run,
     17                              base::Unretained(&test_suite)));
     18 }
     19