13 lines
365 B
C++
13 lines
365 B
C++
// Copyright (c) 2013 Google Inc. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style license tha can be
|
|
// found in the LICENSE file.
|
|
|
|
#include "base/at_exit.h"
|
|
#include "testing/gtest/include/gtest/gtest.h"
|
|
|
|
int main(int argc, char **argv) {
|
|
::testing::InitGoogleTest(&argc, argv);
|
|
base::AtExitManager exit;
|
|
return RUN_ALL_TESTS();
|
|
}
|