OLD | NEW |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 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 | 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/bind.h" | 5 #include "base/bind.h" |
6 #include "base/test/launcher/unit_test_launcher.h" | 6 #include "base/test/launcher/unit_test_launcher.h" |
7 #include "base/test/test_suite.h" | 7 #include "base/test/test_suite.h" |
| 8 #include "mojo/common/test/test_support_impl.h" |
| 9 #include "mojo/public/tests/test_support_private.h" |
8 #include "mojo/system/embedder/embedder.h" | 10 #include "mojo/system/embedder/embedder.h" |
9 | 11 |
10 int main(int argc, char** argv) { | 12 int main(int argc, char** argv) { |
11 base::TestSuite test_suite(argc, argv); | 13 base::TestSuite test_suite(argc, argv); |
12 | 14 |
13 mojo::embedder::Init(); | 15 mojo::embedder::Init(); |
| 16 mojo::test::TestSupport::Init(new mojo::test::TestSupportImpl()); |
14 | 17 |
15 return base::LaunchUnitTests( | 18 return base::LaunchUnitTests( |
16 argc, argv, base::Bind(&base::TestSuite::Run, | 19 argc, argv, base::Bind(&base::TestSuite::Run, |
17 base::Unretained(&test_suite))); | 20 base::Unretained(&test_suite))); |
18 } | 21 } |
OLD | NEW |