Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
yangql
googletest
Commits
c10a35a2
Commit
c10a35a2
authored
Apr 04, 2013
by
zhanyong.wan
Browse files
Fixes some compatibility issues with STLport.
parent
a9a59e06
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
test/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) {
TEST
(
ExpectationSetTest
,
IsEnumerable
)
{
ExpectationSet
es
;
EXPECT_T
HAT
(
es
.
begin
()
,
Eq
(
es
.
end
())
)
;
EXPECT_T
RUE
(
es
.
begin
()
==
es
.
end
());
es
+=
Expectation
();
ExpectationSet
::
const_iterator
it
=
es
.
begin
();
EXPECT_T
HAT
(
it
,
Ne
(
es
.
end
())
)
;
EXPECT_T
RUE
(
it
!=
es
.
end
());
EXPECT_THAT
(
*
it
,
Eq
(
Expectation
()));
++
it
;
EXPECT_T
HAT
(
it
,
Eq
(
es
.
end
())
)
;
EXPECT_T
RUE
(
it
==
es
.
end
());
}
// 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