"vscode:/vscode.git/clone" did not exist on "658ac0b71a350cc833ee4520536b6c4964c7b944"
Commit 53e08c44 authored by zhanyong.wan's avatar zhanyong.wan
Browse files

Include gtest and gmock headers as user headers instead of system headers.

parent ad7c462b
...@@ -32,12 +32,12 @@ ...@@ -32,12 +32,12 @@
// Tests Google Mock's output in various scenarios. This ensures that // Tests Google Mock's output in various scenarios. This ensures that
// Google Mock's messages are readable and useful. // Google Mock's messages are readable and useful.
#include <gmock/gmock.h> #include "gmock/gmock.h"
#include <stdio.h> #include <stdio.h>
#include <string> #include <string>
#include <gtest/gtest.h> #include "gtest/gtest.h"
using testing::_; using testing::_;
using testing::AnyNumber; using testing::AnyNumber;
......
...@@ -33,10 +33,10 @@ ...@@ -33,10 +33,10 @@
// //
// This file tests code in gmock.cc. // This file tests code in gmock.cc.
#include <gmock/gmock.h> #include "gmock/gmock.h"
#include <string> #include <string>
#include <gtest/gtest.h> #include "gtest/gtest.h"
using testing::GMOCK_FLAG(verbose); using testing::GMOCK_FLAG(verbose);
using testing::InitGoogleMock; using testing::InitGoogleMock;
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment