blob: 0ac740ea70618cfa0b486eba1658baf6385e6c62 [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/message_loop/message_loop.h"
#include "base/test/test_suite.h"
#include "cc/test/cc_test_suite.h"
#include "testing/gmock/include/gmock/gmock.h"
int main(int argc, char** argv) {
::testing::InitGoogleMock(&argc, argv);
cc::CCTestSuite test_suite(argc, argv);
int result = test_suite.Run();
return result;
}