Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
yangql
googletest
Commits
dac3e879
Commit
dac3e879
authored
Sep 14, 2010
by
zhanyong.wan
Browse files
Include gtest headers as user headers instead of system headers.
parent
88e0df62
Changes
87
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
8 additions
and
8 deletions
+8
-8
test/gtest_uninitialized_test_.cc
test/gtest_uninitialized_test_.cc
+1
-1
test/gtest_unittest.cc
test/gtest_unittest.cc
+2
-2
test/gtest_xml_outfile1_test_.cc
test/gtest_xml_outfile1_test_.cc
+1
-1
test/gtest_xml_outfile2_test_.cc
test/gtest_xml_outfile2_test_.cc
+1
-1
test/gtest_xml_output_unittest_.cc
test/gtest_xml_output_unittest_.cc
+1
-1
test/production.h
test/production.h
+1
-1
xcode/Samples/FrameworkSample/widget_test.cc
xcode/Samples/FrameworkSample/widget_test.cc
+1
-1
No files found.
test/gtest_uninitialized_test_.cc
View file @
dac3e879
...
...
@@ -29,7 +29,7 @@
//
// Author: wan@google.com (Zhanyong Wan)
#include
<
gtest/gtest.h
>
#include
"
gtest/gtest.h
"
TEST
(
DummyTest
,
Dummy
)
{
// This test doesn't verify anything. We just need it to create a
...
...
test/gtest_unittest.cc
View file @
dac3e879
...
...
@@ -32,7 +32,7 @@
// Tests for Google Test itself. This verifies that the basic constructs of
// Google Test work.
#include
<
gtest/gtest.h
>
#include
"
gtest/gtest.h
"
#include <vector>
// Verifies that the command line flag variables can be accessed
...
...
@@ -57,7 +57,7 @@ TEST(CommandLineFlagsTest, CanBeAccessedInCodeOnceGTestHIsIncluded) {
EXPECT_TRUE
(
dummy
||
!
dummy
);
// Suppresses warning that dummy is unused.
}
#include
<
gtest/gtest-spi.h
>
#include
"
gtest/gtest-spi.h
"
// Indicates that this translation unit is part of Google Test's
// implementation. It must come before gtest-internal-inl.h is
...
...
test/gtest_xml_outfile1_test_.cc
View file @
dac3e879
...
...
@@ -32,7 +32,7 @@
// gtest_xml_outfile1_test_ writes some xml via TestProperty used by
// gtest_xml_outfiles_test.py
#include
<
gtest/gtest.h
>
#include
"
gtest/gtest.h
"
class
PropertyOne
:
public
testing
::
Test
{
protected:
...
...
test/gtest_xml_outfile2_test_.cc
View file @
dac3e879
...
...
@@ -32,7 +32,7 @@
// gtest_xml_outfile2_test_ writes some xml via TestProperty used by
// gtest_xml_outfiles_test.py
#include
<
gtest/gtest.h
>
#include
"
gtest/gtest.h
"
class
PropertyTwo
:
public
testing
::
Test
{
protected:
...
...
test/gtest_xml_output_unittest_.cc
View file @
dac3e879
...
...
@@ -38,7 +38,7 @@
// This program will be invoked from a Python unit test. Don't run it
// directly.
#include
<
gtest/gtest.h
>
#include
"
gtest/gtest.h
"
using
::
testing
::
InitGoogleTest
;
using
::
testing
::
TestEventListeners
;
...
...
test/production.h
View file @
dac3e879
...
...
@@ -34,7 +34,7 @@
#ifndef GTEST_TEST_PRODUCTION_H_
#define GTEST_TEST_PRODUCTION_H_
#include
<
gtest/gtest_prod.h
>
#include
"
gtest/gtest_prod.h
"
class
PrivateCode
{
public:
...
...
xcode/Samples/FrameworkSample/widget_test.cc
View file @
dac3e879
...
...
@@ -36,7 +36,7 @@
// This is a simple test file for the Widget class in the Widget.framework
#include <string>
#include
<
gtest/gtest.h
>
#include
"
gtest/gtest.h
"
#include <Widget/widget.h>
...
...
Prev
1
2
3
4
5
Next
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment