Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
G
googletest
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Chen Yisong
googletest
Commits
c10a35a2
Commit
c10a35a2
authored
Apr 04, 2013
by
zhanyong.wan
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixes some compatibility issues with STLport.
parent
a9a59e06
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
gmock-spec-builders_test.cc
test/gmock-spec-builders_test.cc
+3
-3
No files found.
test/gmock-spec-builders_test.cc
View file @
c10a35a2
...
@@ -1523,14 +1523,14 @@ TEST(ExpectationSetTest, SizeWorks) {
...
@@ -1523,14 +1523,14 @@ TEST(ExpectationSetTest, SizeWorks) {
TEST
(
ExpectationSetTest
,
IsEnumerable
)
{
TEST
(
ExpectationSetTest
,
IsEnumerable
)
{
ExpectationSet
es
;
ExpectationSet
es
;
EXPECT_T
HAT
(
es
.
begin
(),
Eq
(
es
.
end
()
));
EXPECT_T
RUE
(
es
.
begin
()
==
es
.
end
(
));
es
+=
Expectation
();
es
+=
Expectation
();
ExpectationSet
::
const_iterator
it
=
es
.
begin
();
ExpectationSet
::
const_iterator
it
=
es
.
begin
();
EXPECT_T
HAT
(
it
,
Ne
(
es
.
end
()
));
EXPECT_T
RUE
(
it
!=
es
.
end
(
));
EXPECT_THAT
(
*
it
,
Eq
(
Expectation
()));
EXPECT_THAT
(
*
it
,
Eq
(
Expectation
()));
++
it
;
++
it
;
EXPECT_T
HAT
(
it
,
Eq
(
es
.
end
()
));
EXPECT_T
RUE
(
it
==
es
.
end
(
));
}
}
// Tests the .After() clause.
// Tests the .After() clause.
...
...
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