diff options
author | zhanyong.wan <zhanyong.wan@8415998a-534a-0410-bf83-d39667b30386> | 2010-09-14 05:38:21 +0000 |
---|---|---|
committer | zhanyong.wan <zhanyong.wan@8415998a-534a-0410-bf83-d39667b30386> | 2010-09-14 05:38:21 +0000 |
commit | 53e08c44dd34857ba57581d7c5774d6c96a8d0e1 (patch) | |
tree | 8aee751ab6c88f64cbc2ea4de63e80a6f955fc9e /test/gmock-internal-utils_test.cc | |
parent | ad7c462be7ea6041419426f98b5653bd98ad14dc (diff) | |
download | googletest-53e08c44dd34857ba57581d7c5774d6c96a8d0e1.tar.gz googletest-53e08c44dd34857ba57581d7c5774d6c96a8d0e1.tar.bz2 googletest-53e08c44dd34857ba57581d7c5774d6c96a8d0e1.zip |
Include gtest and gmock headers as user headers instead of system headers.
Diffstat (limited to 'test/gmock-internal-utils_test.cc')
-rw-r--r-- | test/gmock-internal-utils_test.cc | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/test/gmock-internal-utils_test.cc b/test/gmock-internal-utils_test.cc index 720d6c72..5b0e8043 100644 --- a/test/gmock-internal-utils_test.cc +++ b/test/gmock-internal-utils_test.cc @@ -33,16 +33,16 @@ // // This file tests the internal utilities. -#include <gmock/internal/gmock-internal-utils.h> +#include "gmock/internal/gmock-internal-utils.h" #include <stdlib.h> #include <map> #include <string> #include <sstream> #include <vector> -#include <gmock/gmock.h> -#include <gmock/internal/gmock-port.h> -#include <gtest/gtest.h> -#include <gtest/gtest-spi.h> +#include "gmock/gmock.h" +#include "gmock/internal/gmock-port.h" +#include "gtest/gtest.h" +#include "gtest/gtest-spi.h" #if GTEST_OS_CYGWIN #include <sys/types.h> // For ssize_t. NOLINT |