| OLD | NEW |
| (Empty) |
| 1 // Copyright (c) 2012 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/bind.h" | |
| 6 #include "base/test/launcher/unit_test_launcher.h" | |
| 7 #include "base/test/test_suite.h" | |
| 8 #include "build/build_config.h" | |
| 9 #include "mojo/edk/embedder/embedder.h" | |
| 10 | |
| 11 namespace { | |
| 12 | |
| 13 class BlimpTestSuite : public base::TestSuite { | |
| 14 public: | |
| 15 BlimpTestSuite(int argc, char** argv) : base::TestSuite(argc, argv) {} | |
| 16 | |
| 17 private: | |
| 18 DISALLOW_COPY_AND_ASSIGN(BlimpTestSuite); | |
| 19 }; | |
| 20 | |
| 21 } // namespace | |
| 22 | |
| 23 int main(int argc, char** argv) { | |
| 24 mojo::edk::Init(); | |
| 25 BlimpTestSuite test_suite(argc, argv); | |
| 26 return base::LaunchUnitTests( | |
| 27 argc, argv, | |
| 28 base::Bind(&base::TestSuite::Run, base::Unretained(&test_suite))); | |
| 29 } | |
| OLD | NEW |