blob: e2efa31c3779be23eafec4eb16ed977f6b14b7f0 [file] [log] [blame]
// Copyright (c) 2012 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "base/test/main_hook.h"
#include "ui/test/test_suite.h"
int main(int argc, char** argv) {
MainHook hook(main, argc, argv);
return ui::test::UITestSuite(argc, argv).Run();
}