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
1bee7b2f
Commit
1bee7b2f
authored
Feb 20, 2009
by
zhanyong.wan
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Implements Contains(element) matcher. By Gary Morain.
parent
7f4c2c0f
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
178 additions
and
0 deletions
+178
-0
gmock-generated-matchers.h
include/gmock/gmock-generated-matchers.h
+41
-0
gmock-generated-matchers.h.pump
include/gmock/gmock-generated-matchers.h.pump
+41
-0
gmock-generated-matchers_test.cc
test/gmock-generated-matchers_test.cc
+96
-0
No files found.
include/gmock/gmock-generated-matchers.h
View file @
1bee7b2f
...
@@ -1573,4 +1573,45 @@ string FormatMatcherDescription(
...
@@ -1573,4 +1573,45 @@ string FormatMatcherDescription(
p4##_type, p5##_type, p6##_type, p7##_type, p8##_type, p9##_type>::\
p4##_type, p5##_type, p6##_type, p7##_type, p8##_type, p9##_type>::\
gmock_Impl<arg_type>::Matches(arg_type arg) const
gmock_Impl<arg_type>::Matches(arg_type arg) const
namespace
testing
{
namespace
internal
{
// Returns true iff element is in the STL-style container.
template
<
typename
Container
,
typename
Element
>
inline
bool
Contains
(
const
Container
&
container
,
const
Element
&
element
)
{
return
::
std
::
find
(
container
.
begin
(),
container
.
end
(),
element
)
!=
container
.
end
();
}
// Returns true iff element is in the C-style array.
template
<
typename
ArrayElement
,
size_t
N
,
typename
Element
>
inline
bool
Contains
(
const
ArrayElement
(
&
array
)[
N
],
const
Element
&
element
)
{
return
::
std
::
find
(
array
,
array
+
N
,
element
)
!=
array
+
N
;
}
}
// namespace internal
// Matches an STL-style container or a C-style array that contains the given
// element.
//
// Examples:
// ::std::set<int> page_ids;
// page_ids.insert(3);
// page_ids.insert(1);
// EXPECT_THAT(page_ids, Contains(1));
// EXPECT_THAT(page_ids, Contains(3.0));
// EXPECT_THAT(page_ids, Not(Contains(4)));
//
// ::std::map<int, size_t> page_lengths;
// page_lengths[1] = 100;
// EXPECT_THAT(map_int, Contains(::std::pair<const int, size_t>(1, 100)));
//
// const char* user_ids[] = { "joe", "mike", "tom" };
// EXPECT_THAT(user_ids, Contains(::std::string("tom")));
MATCHER_P
(
Contains
,
element
,
""
)
{
return
internal
::
Contains
(
arg
,
element
);
}
}
// namespace testing
#endif // GMOCK_INCLUDE_GMOCK_GMOCK_GENERATED_MATCHERS_H_
#endif // GMOCK_INCLUDE_GMOCK_GMOCK_GENERATED_MATCHERS_H_
include/gmock/gmock-generated-matchers.h.pump
View file @
1bee7b2f
...
@@ -590,4 +590,45 @@ $var param_field_decls2 = [[$for j
...
@@ -590,4 +590,45 @@ $var param_field_decls2 = [[$for j
]]
]]
namespace
testing
{
namespace
internal
{
// Returns true iff element is in the STL-style container.
template
<
typename
Container
,
typename
Element
>
inline
bool
Contains
(
const
Container
&
container
,
const
Element
&
element
)
{
return
::
std
::
find
(
container
.
begin
(),
container
.
end
(),
element
)
!=
container
.
end
();
}
// Returns true iff element is in the C-style array.
template
<
typename
ArrayElement
,
size_t
N
,
typename
Element
>
inline
bool
Contains
(
const
ArrayElement
(
&
array
)[
N
],
const
Element
&
element
)
{
return
::
std
::
find
(
array
,
array
+
N
,
element
)
!=
array
+
N
;
}
}
// namespace internal
// Matches an STL-style container or a C-style array that contains the given
// element.
//
// Examples:
// ::std::set<int> page_ids;
// page_ids.insert(3);
// page_ids.insert(1);
// EXPECT_THAT(page_ids, Contains(1));
// EXPECT_THAT(page_ids, Contains(3.0));
// EXPECT_THAT(page_ids, Not(Contains(4)));
//
// ::std::map<int, size_t> page_lengths;
// page_lengths[1] = 100;
// EXPECT_THAT(map_int, Contains(::std::pair<const int, size_t>(1, 100)));
//
// const char* user_ids[] = { "joe", "mike", "tom" };
// EXPECT_THAT(user_ids, Contains(::std::string("tom")));
MATCHER_P
(
Contains
,
element
,
""
)
{
return
internal
::
Contains
(
arg
,
element
);
}
}
// namespace testing
#endif // GMOCK_INCLUDE_GMOCK_GMOCK_GENERATED_MATCHERS_H_
#endif // GMOCK_INCLUDE_GMOCK_GMOCK_GENERATED_MATCHERS_H_
test/gmock-generated-matchers_test.cc
View file @
1bee7b2f
...
@@ -34,8 +34,11 @@
...
@@ -34,8 +34,11 @@
#include <gmock/gmock-generated-matchers.h>
#include <gmock/gmock-generated-matchers.h>
#include <list>
#include <list>
#include <map>
#include <set>
#include <sstream>
#include <sstream>
#include <string>
#include <string>
#include <utility>
#include <vector>
#include <vector>
#include <gmock/gmock.h>
#include <gmock/gmock.h>
...
@@ -45,9 +48,13 @@
...
@@ -45,9 +48,13 @@
namespace
{
namespace
{
using
std
::
list
;
using
std
::
list
;
using
std
::
map
;
using
std
::
pair
;
using
std
::
set
;
using
std
::
stringstream
;
using
std
::
stringstream
;
using
std
::
vector
;
using
std
::
vector
;
using
testing
::
_
;
using
testing
::
_
;
using
testing
::
Contains
;
using
testing
::
ElementsAre
;
using
testing
::
ElementsAre
;
using
testing
::
ElementsAreArray
;
using
testing
::
ElementsAreArray
;
using
testing
::
Eq
;
using
testing
::
Eq
;
...
@@ -735,4 +742,93 @@ TEST(MatcherPnMacroTest, TypesAreCorrect) {
...
@@ -735,4 +742,93 @@ TEST(MatcherPnMacroTest, TypesAreCorrect) {
EqualsSumOf
(
1
,
2
,
3
,
4
,
5
,
6
,
7
,
8
,
9
,
'0'
);
EqualsSumOf
(
1
,
2
,
3
,
4
,
5
,
6
,
7
,
8
,
9
,
'0'
);
}
}
TEST
(
ContainsTest
,
ListMatchesWhenElementIsInContainer
)
{
list
<
int
>
some_list
;
some_list
.
push_back
(
3
);
some_list
.
push_back
(
1
);
some_list
.
push_back
(
2
);
EXPECT_THAT
(
some_list
,
Contains
(
1
));
EXPECT_THAT
(
some_list
,
Contains
(
3.0
));
EXPECT_THAT
(
some_list
,
Contains
(
2.0
f
));
list
<
string
>
another_list
;
another_list
.
push_back
(
"fee"
);
another_list
.
push_back
(
"fie"
);
another_list
.
push_back
(
"foe"
);
another_list
.
push_back
(
"fum"
);
EXPECT_THAT
(
another_list
,
Contains
(
string
(
"fee"
)));
}
TEST
(
ContainsTest
,
ListDoesNotMatchWhenElementIsNotInContainer
)
{
list
<
int
>
some_list
;
some_list
.
push_back
(
3
);
some_list
.
push_back
(
1
);
EXPECT_THAT
(
some_list
,
Not
(
Contains
(
4
)));
}
TEST
(
ContainsTest
,
SetMatchesWhenElementIsInContainer
)
{
set
<
int
>
some_set
;
some_set
.
insert
(
3
);
some_set
.
insert
(
1
);
some_set
.
insert
(
2
);
EXPECT_THAT
(
some_set
,
Contains
(
1.0
));
EXPECT_THAT
(
some_set
,
Contains
(
3.0
f
));
EXPECT_THAT
(
some_set
,
Contains
(
2
));
set
<
const
char
*>
another_set
;
another_set
.
insert
(
"fee"
);
another_set
.
insert
(
"fie"
);
another_set
.
insert
(
"foe"
);
another_set
.
insert
(
"fum"
);
EXPECT_THAT
(
another_set
,
Contains
(
string
(
"fum"
)));
}
TEST
(
ContainsTest
,
SetDoesNotMatchWhenElementIsNotInContainer
)
{
set
<
int
>
some_set
;
some_set
.
insert
(
3
);
some_set
.
insert
(
1
);
EXPECT_THAT
(
some_set
,
Not
(
Contains
(
4
)));
set
<
const
char
*>
c_string_set
;
c_string_set
.
insert
(
"hello"
);
EXPECT_THAT
(
c_string_set
,
Not
(
Contains
(
string
(
"hello"
).
c_str
())));
}
TEST
(
ContainsTest
,
DescribesItselfCorrectly
)
{
Matcher
<
vector
<
int
>
>
m
=
Contains
(
1
);
EXPECT_EQ
(
"contains 1"
,
Describe
(
m
));
}
TEST
(
ContainsTest
,
MapMatchesWhenElementIsInContainer
)
{
map
<
const
char
*
,
int
>
my_map
;
const
char
*
bar
=
"a string"
;
my_map
[
bar
]
=
2
;
EXPECT_THAT
(
my_map
,
Contains
(
pair
<
const
char
*
const
,
int
>
(
bar
,
2
)));
map
<
string
,
int
>
another_map
;
another_map
[
"fee"
]
=
1
;
another_map
[
"fie"
]
=
2
;
another_map
[
"foe"
]
=
3
;
another_map
[
"fum"
]
=
4
;
EXPECT_THAT
(
another_map
,
Contains
(
pair
<
const
string
,
int
>
(
string
(
"fee"
),
1
)));
EXPECT_THAT
(
another_map
,
Contains
(
pair
<
const
string
,
int
>
(
"fie"
,
2
)));
}
TEST
(
ContainsTest
,
MapDoesNotMatchWhenElementIsNotInContainer
)
{
map
<
int
,
int
>
some_map
;
some_map
[
1
]
=
11
;
some_map
[
2
]
=
22
;
EXPECT_THAT
(
some_map
,
Not
(
Contains
(
pair
<
const
int
,
int
>
(
2
,
23
))));
}
TEST
(
ContainsTest
,
ArrayMatchesWhenElementIsInContainer
)
{
const
char
*
string_array
[]
=
{
"fee"
,
"fie"
,
"foe"
,
"fum"
};
EXPECT_THAT
(
string_array
,
Contains
(
string
(
"fum"
)));
}
TEST
(
ContainsTest
,
ArrayDoesNotMatchWhenElementIsNotInContainer
)
{
int
int_array
[]
=
{
1
,
2
,
3
,
4
};
EXPECT_THAT
(
int_array
,
Not
(
Contains
(
5
)));
}
}
// namespace
}
// namespace
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