aboutsummaryrefslogtreecommitdiffstats
path: root/googlemock/test
diff options
context:
space:
mode:
authorXiaoyi Zhang <zhangxy988@gmail.com>2018-02-27 16:03:36 -0500
committerGitHub <noreply@github.com>2018-02-27 16:03:36 -0500
commit576d689c19f053be212ce1e18b02d342976baa29 (patch)
treee997aefaaf3876d55487aa1ac31a1e46443d08b6 /googlemock/test
parentb951c652ff8b0d1ab2582807c3093e150783c67f (diff)
parenta9f2368dc07c35e580ffa950fa0d70cf22475bfe (diff)
downloadgoogletest-576d689c19f053be212ce1e18b02d342976baa29.tar.gz
googletest-576d689c19f053be212ce1e18b02d342976baa29.tar.bz2
googletest-576d689c19f053be212ce1e18b02d342976baa29.zip
Merge branch 'master' into variant_matcher
Diffstat (limited to 'googlemock/test')
-rw-r--r--googlemock/test/gmock_link_test.h24
1 files changed, 22 insertions, 2 deletions
diff --git a/googlemock/test/gmock_link_test.h b/googlemock/test/gmock_link_test.h
index 1f55f5bd..5f855d19 100644
--- a/googlemock/test/gmock_link_test.h
+++ b/googlemock/test/gmock_link_test.h
@@ -120,13 +120,15 @@
# include <errno.h>
#endif
-#include "gmock/internal/gmock-port.h"
-#include "gtest/gtest.h"
#include <iostream>
#include <vector>
+#include "gtest/gtest.h"
+#include "gtest/internal/gtest-port.h"
+
using testing::_;
using testing::A;
+using testing::Action;
using testing::AllOf;
using testing::AnyOf;
using testing::Assign;
@@ -148,6 +150,8 @@ using testing::Invoke;
using testing::InvokeArgument;
using testing::InvokeWithoutArgs;
using testing::IsNull;
+using testing::IsSubsetOf;
+using testing::IsSupersetOf;
using testing::Le;
using testing::Lt;
using testing::Matcher;
@@ -592,6 +596,22 @@ TEST(LinkTest, TestMatcherElementsAreArray) {
ON_CALL(mock, VoidFromVector(ElementsAreArray(arr))).WillByDefault(Return());
}
+// Tests the linkage of the IsSubsetOf matcher.
+TEST(LinkTest, TestMatcherIsSubsetOf) {
+ Mock mock;
+ char arr[] = {'a', 'b'};
+
+ ON_CALL(mock, VoidFromVector(IsSubsetOf(arr))).WillByDefault(Return());
+}
+
+// Tests the linkage of the IsSupersetOf matcher.
+TEST(LinkTest, TestMatcherIsSupersetOf) {
+ Mock mock;
+ char arr[] = {'a', 'b'};
+
+ ON_CALL(mock, VoidFromVector(IsSupersetOf(arr))).WillByDefault(Return());
+}
+
// Tests the linkage of the ContainerEq matcher.
TEST(LinkTest, TestMatcherContainerEq) {
Mock mock;