blob: e0e598bc28a3ea657ebcb907cf191b96743476d7 [file] [log] [blame]
drewry@google.combd940e92009-12-07 19:13:27 +00001// Copyright (c) 2009 The Chromium OS 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
Will Drewry4dd0e662010-01-19 14:43:50 -08005#include <gmock/gmock.h>
drewry@google.combd940e92009-12-07 19:13:27 +00006#include <gtest/gtest.h>
7
8int main(int argc, char **argv) {
9 ::testing::InitGoogleTest(&argc, argv);
Will Drewry4dd0e662010-01-19 14:43:50 -080010 ::testing::GTEST_FLAG(throw_on_failure) = true;
11 ::testing::InitGoogleMock(&argc, argv);
drewry@google.combd940e92009-12-07 19:13:27 +000012 return RUN_ALL_TESTS();
13}