| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "base/base_paths.h" | 5 #include "base/base_paths.h" |
| 6 #include "base/bind.h" | 6 #include "base/bind.h" |
| 7 #include "base/macros.h" | 7 #include "base/macros.h" |
| 8 #include "base/path_service.h" | 8 #include "base/path_service.h" |
| 9 #include "base/test/launcher/unit_test_launcher.h" | 9 #include "base/test/launcher/unit_test_launcher.h" |
| 10 #include "base/test/test_suite.h" | 10 #include "base/test/test_suite.h" |
| (...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 46 } // namespace | 46 } // namespace |
| 47 | 47 |
| 48 int main(int argc, char** argv) { | 48 int main(int argc, char** argv) { |
| 49 AthenaTestSuite test_suite(argc, argv); | 49 AthenaTestSuite test_suite(argc, argv); |
| 50 | 50 |
| 51 return base::LaunchUnitTestsSerially( | 51 return base::LaunchUnitTestsSerially( |
| 52 argc, | 52 argc, |
| 53 argv, | 53 argv, |
| 54 base::Bind(&AthenaTestSuite::Run, base::Unretained(&test_suite))); | 54 base::Bind(&AthenaTestSuite::Run, base::Unretained(&test_suite))); |
| 55 } | 55 } |
| OLD | NEW |