run_all_unittests_main.cc 360 B

1234567891011
  1. // Copyright 2016 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. #include "mojo/core/embedder/embedder.h"
  5. #include "ui/views/views_test_suite.h"
  6. int main(int argc, char** argv) {
  7. mojo::core::Init();
  8. return views::ViewsTestSuite(argc, argv).RunTests();
  9. }